<!--
	/*@copyright QQ:1511175 Email:lllshuai@163.com*/
	var imgUrl=new Array();
	var imgLink=new Array();
	var imgTz=new Array();
	var imgWidth=new Array();
	var imgHeight=new Array();
	var imgLinkTxt=new Array();
	var adNum=0;
	var	theTimer;
	function moveToAd(AdID)
	{
		adNum=AdID;
		if(adNum==imgUrl.length)
		{
			adNum=imgUrl.length-1;
		}
		else if(adNum<0)
		{
			adNum=0;
		}
		if(document.all)
		{
			//document.getElementById("imgTop").filters.item(0).motion={reverse:'forward',forward:'reverse'}[document.getElementById("imgTop").filters.item(0).motion]
			//document.getElementById("imgTop").filters.item(0).apply();
			//document.getElementById("imgTop").filters.item(0).play(duration=2);
			document.getElementById("imgTop").filters.revealTrans.Transition=23;
			document.getElementById("imgTop").filters.item(0).apply();
			document.getElementById("imgTop").filters.item(0).play(duration=0.7);
		}
		document.getElementById("imgTop").src=imgUrl[adNum];
		document.getElementById("imgTop").alt=imgTz[adNum]; 
		document.getElementById("imgTop").width=imgWidth[adNum];
		document.getElementById("imgTop").height=imgHeight[adNum];
		document.getElementById("imgTopLink2").title=imgTz[adNum];
		document.getElementById("imgTopLink2").innerHTML=imgLinkTxt[adNum];
		for(maxImg_i=0;maxImg_i<imgUrl.length;maxImg_i++)
		{
			if(maxImg_i<5)
			{
				setTimeout("document.getElementById('maxImgNavTd"+maxImg_i+"').style.backgroundColor='';",0);
				setTimeout("document.getElementById('maxImgNavTd"+maxImg_i+"_font').className='';",0);
			}
		}
		if(adNum<5)
		{
			setTimeout("document.getElementById('maxImgNavTd"+adNum+"').style.backgroundColor='#C8040A';",0);
			setTimeout("document.getElementById('maxImgNavTd"+adNum+"_font').className='fontGlowGreen';",0);
		}
		
		adNum++;
	}
	function nextAd()
	{
		if(adNum==imgUrl.length)
			adNum=0;
		//try{
			moveToAd(adNum);
		//}
		//catch(ex){}
		theTimer=setTimeout("nextAd();", 6000);
		
	}
	
	function goUrl()
	{
		//因为在等待下次刷新的时候adNum已经+过1了，所以在使用adNum的时候要-1
		jumpUrl=imgLink[adNum-1];
		jumpTarget='_blank';
		if(jumpUrl!="")
			window.open(jumpUrl,jumpTarget);
	}
	/*@copyright QQ:1511175 Email:lllshuai@163.com*/
	-->