//=====================参数说明===================================
//=====		对象	[TDPicClass]
//=====		参数	width	——显示宽度
//=====				height	——显示高度
//=====				Psrc	——图片URL（数组）
//=====				Purl	——图片A标签URL
//=====				Palt	——图片替换文本
//=====				time	——图片切换延时。
//=====		方法	show	——执行。
//=================================================================	
//=================================================================
//=====		版权所有 TanDy By 2008
//=====		TDPicClass V1.0.07.20
//=====		请保留版权信息。(tandyly.cn)
//=================================================================
function TDPicClass3(fwidth,fheight,fsrc,furl,falt,ftime){var PsrcNum=fsrc.length;this.width=fwidth;this.height=fheight;var i=0;function manshu(){this.Psrc=fsrc;this.Purl=furl;this.Palt=falt;this.time=ftime;if(i==PsrcNum){i=0;}
var hahaha=document.getElementById("hahaha");hahaha.filters[0].apply();hahaha.src=this.Psrc[i];hahaha.alt=this.Palt[i];document.getElementById("TDShowPicUrl").href=this.Purl[i];hahaha.filters[0].play();i++;setTimeout(manshu,this.time);}
this.show=function (){document.writeln("<a href='' id='TDShowPicUrl'><img width='" + fwidth + "' height='" + fheight + "' alt='' src='"+fsrc[0]+"' style='filter: BlendTrans(Duration=2);border:none;vertical-align:bottom;' id=\"hahaha\" /></a>");setTimeout(manshu,this.time);}}
