﻿// JScript 文件
/* 新增
//操作员: 
//时间： 2009-06-24
//功能说明： 首页滑动广告JS
*/
 var time_ads = 100;
    var height_ads = 0;
    function addCount()
    {
    
        if(time_ads>0)
        {
            time_ads--;
            height_ads = height_ads+3;
            
        }
        else
        {
            return;
        }
        if(height_ads>250)  //高度
        {
            return;
        }
        document.getElementById("indexSlidingAdsDiv").style.display = "";
        document.getElementById("indexSlidingAdsDiv").style.height = height_ads+"px";
        setTimeout("addCount()",30);  
    }
   

     
    var T_ads = 350;
    var No_ads = 250; //高度
   
    function noneAds()
    {
/*
        if(T_ads>0)
        {
            T_ads--;
            No_ads = No_ads-3;
            
        }
        else
        {
            return;
        }
         
        if(No_ads<=120)
        {*/  
            document.getElementById("adsImg").setAttribute("src","/images/ad/950-120.jpg");
         //   return;
        //}
        
        //document.getElementById("indexSlidingAdsDiv").style.height = No_ads+"px";
        document.getElementById("indexSlidingAdsDiv").style.height ="120px";
        
        //setTimeout("noneAds()",30);  
    }  
