﻿$(document).ready(function() {
    //版权声明
    $("#FooterText").html();
    //头部下拉选项
    $("#open").click(function() { $("div#panel").slideDown("slow"); });
    $("#close").click(function() { $("div#panel").slideUp("slow"); });
    $("#toggle a").click(function() { $("#toggle a").toggle(); });
    //判断IE版本
    if ($.browser.msie) {
        if ($.browser.version === "6.0") {
            //alert("建议使用IE7及以上版本浏览！\nRecommend using IE7 and above here!");
        }
    };
    //底部导航
    $(".subtitle").click(function() { $(this).blur(); });
    $(".globalnav li").mouseover(function() { $(this).stop().animate({ height: '120px' }, { queue: false, duration: 600, easing: 'easeOutBounce' }) });
    $(".globalnav li").mouseout(function() { $(this).stop().animate({ height: '40px' }, { queue: false, duration: 600, easing: 'easeOutBounce' }) });

    $("#P_ID").val($(".thumbs a:eq(0) img").attr("alt"));
    var P_id = $("#P_ID").val();
    document.cookie = "PhotoID=" + P_id;
    $("#Sexyurl").attr("href", "Photo_Buy.aspx?TB_iframe=true&width=850&height=500&modal=1&background=#222&P_ID=" + P_id);
    $(".thumbs a img").bind("click", function() {
        $("#P_ID").val($(this).attr("alt"));
        var P_id = $("#P_ID").val();
        document.cookie = "PhotoID=" + P_id;
        $("#Sexyurl").attr("href", "Photo_Buy.aspx?TB_iframe=true&width=850&height=500&modal=1&background=#222&P_ID=" + P_id);

    });


    //end	
});


