<!--
   
   var time_jereh = 524;
    var h_jereh = 40;
    function addCount_jereh()
    {
        if(time_jereh>0)
        {
            time_jereh--;
            h_jereh = h_jereh+50;
        }
        else
        {
            return;
        }
        if(h_jereh>512) //高度
        {
            return;
        }
        document.getElementById("ads_jereh").style.display = "";
        document.getElementById("ads_jereh").style.height = h_jereh+"px";
        setTimeout("addCount_jereh()",30); 
    }

    var T_jereh = 500;
    var N_jereh = 40; //高度
    function noneAds_jereh()
    {
        if(T_jereh>0)
        {
            T_jereh--;
            N_jereh = N_jereh-50;
        }
        else
        {
            return;
        }
        if(N_jereh<0)
        {
            document.getElementById("ads_jereh").style.display = "none";
			document.getElementById("ads_jereh2").style.display= "";
            return;
        }
        
        document.getElementById("ads_jereh").style.height = N_jereh+"px";
        setTimeout("noneAds_jereh()",30); 
    }

document.write('<center><div id="container" ><div id="ads_jereh" style="margin:auto; display:none; width:960px; top:0px; height:auto; border:solid 6px #FFFFFF; background-color:#72645C; overflow:hidden; text-align:center; z-index:600;"><a href="http://www.chinaqipeihui.com/" target="_blank"><img src="images/gg01/68qph960x400.jpg" width="948" height="478" alt="" border="0" /></a></div><div id="ads_jereh2" style="display:none;width:960px; top:0px;border:solid 6px #FFFFFF"><a href="http://www.chinaqipeihui.com/" target="_blank"><img src="images/gg01/68qph960x40.jpg" width="948" height="40" alt="" border="0" /></a></div></div></center>');

        addCount_jereh();
        setTimeout("noneAds_jereh()",12000); //停留时间自己调了
-->