//Ìì¼«ÒÁÓÀºãÔ­´´
var nn=1;
var key=0;
function change_img()
{
	if(key==0){key=1;
	}
else if(document.all){
	document.getElementById("pic").filters[0].Apply();document.getElementById("pic").filters[0].Play(duration=2);
	}
	eval('document.getElementById("pic").src=img'+nn+'.src');
	nn++;if(nn>counts){nn=1;}
	tt=setTimeout('change_img()',8000);
}
function changeimg(n){nn=n;window.clearInterval(tt);change_img();}
document.write('<div style="width:'+widths+'px;height:'+heights+'px;overflow:hidden;text-overflow:clip;">');
document.write('<div><img id="pic" style="border:0px;filter:progid:dximagetransform.microsoft.wipe(gradientsize=1.0,wipestyle=4, motion=forward)" width='+widths+' height='+heights+' /></div>');
document.write('<div style="filter:background: #ffffff;width:100%-2px;text-align:right;top:-12px;position:relative;margin:1px;height:12px;padding:0px;margin:0px;border:0px;">');
document.write('</div></div>');
change_img();

