//首页
jQuery(document).ready(function() {
    jQuery('#smallshow').hide();
    setTimeout("showSmall()", 8000);
    //i=8;
    //jQuery('#bigshow').append('<span id="s_count">倒计时: <em id="count_num">'+i+'</em>秒</span>');
    //setInterval("scount()",1000);
});

function showSmall() {
    jQuery('#bigshow').slideUp(1000, function() {
        jQuery('#smallshow').slideDown(1000);
    });
}


$(document).ready(function() {
    $("#smallshow").hover(function() {
        $("#bigshow").show();
        $("#smallshow").hide();
    });

    $("#bigshow").bind("mouseleave", function() {   
        $("#bigshow").hide();
        $("#smallshow").show();
    });

})


/*
function scount(){
var n=jQuery('#count_num').html();
n=parseInt(n);
if(n>0){
n--;
jQuery('#count_num').html(n);
}
}
*/
