// JavaScript Document
//要加载的图片-----------------------------------------------
var bannerAD=new Array();
bannerAD[0]="../../../536sdwmres/images/common/FG/gd1.gif";
bannerAD[1]="../../../536sdwmres/images/common/FG/gd2.gif";
bannerAD[2]="../../../536sdwmres/images/common/FG/gd3.gif";
bannerAD[3]="../../../536sdwmres/images/common/FG/gd4.gif";
bannerAD[4]="../../../536sdwmres/images/common/FG/gd5.gif";
var adNum=0;

//加载图片到内存---------------------------------------------
var preloadedimages=new Array();
function FillImages()
{
   for (i=0;i<bannerAD.length;i++){
      preloadedimages[i]=new Image();
      preloadedimages[i].src=bannerAD[i];
   }
}
function setTransition(){
   if (document.all){
      bannerADrotator.filters.revealTrans.Transition=Math.floor(Math.random()*23);
      bannerADrotator.filters.revealTrans.apply();
   }
}
function playTransition(){
   if (document.all)
      bannerADrotator.filters.revealTrans.play();
}
function nextAd(){
   if(adNum<bannerAD.length-1)
   {
 adNum++ ;
   }
   else
   {
 adNum=0;
   }
   if(typeof(bannerADrotator)=="undefined")
   {
        bannerADrotator=document.getElementById("bannerADrotator");
   }          
   setTransition();
   bannerADrotator.src=preloadedimages[adNum].src; 
   document.getElementById("bannerADrotator").style.display="";
   playTransition();
   theTimer=setTimeout("nextAd()", 6000);
}
function InitAd()
{
   FillImages();
   nextAd();
}
window.onload=InitAd;
