$(function () {
    // 点击立即下载
    $("#btnDownloads").bind("click", function () {
        $("#ifameStats").attr("src", "http://stats.appmarts.com/stats/down");
        window.open("http://downloads.appmarts.com/appmarts.exe")
    }).bind("focus", function () {
        // 去焦点
        this.blur()
    }).bind("mouseover", function () {
        // 移入替换笑面
         $(".smile").css({ "background": "url(../Images/app_bg2.png) -797px -900px" });
    }).bind("mouseout", function () {
        $(".smile").css({ "background": "none" });
    });

    // 特色介绍动画
    $(".wt_100").stop().animate({ width: "430px", height: "67px", "margin-left": "0px", "margin-top": "0px", "margin-right": "0px" }, 300);
    $(".w_100").stop().animate({ width: "430px", height: "67px", "margin-left": "0px", "margin-right": "0px" }, 300);
    $(".w_50").stop().animate({ width: "210px", height: "67px" }, 300, function () { $(".w_150 span").animate({ "margin-left": "10px" }, 300); });
});

