
document.write('<div id=oTransContainer style=\'FILTER: progid:DXImageTransform.Microsoft.Wipe(GradientSize=1.0,wipeStyle=0, motion=forward); width:185px; height:199px\'><a href=\'#\' target=><img class=pic id=oDIV1 height=199 src=\'images/1.gif\' width=185 border=0 style=\'BORDER-RIGHT: #999999 1px solid;DISPLAY: none; BORDER-TOP: #999999 1px solid; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\'></a><a href=#><img class=pic id=oDIV2 height=199 src=\'images/2.gif\' width=185 border=0 style=\'BORDER-RIGHT: #999999 1px solid; BORDER-TOP: #999999 1px solid; DISPLAY: none; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\' height=199 src=\'images/3.gif\' width=185 border=0></a><a href=#><img class=pic id=oDIV3 height=199 src=\'images/3.gif\' width=185 border=0 style=\'BORDER-RIGHT: #999999 1px solid; BORDER-TOP: #999999 1px solid; DISPLAY: none; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\' height=199 src=\'images/4.gif\' width=184 border=0></a><a href=#><img class=pic id=oDIV4 <img class=pic id=oDIV2 height=199 src=\'images/4.gif\' style=\'BORDER-RIGHT: #999999 1px solid; BORDER-TOP: #999999 1px solid; DISPLAY: none; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\' height=199 src=\'images/5.gif\' width=184 border=0></a><a href=#><img class=pic id=oDIV5 style=\'BORDER-RIGHT: #999999 1px solid; BORDER-TOP: #999999 1px solid; DISPLAY: none; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\' height=199 src=\'images/6.gif\' width=184 border=0></a><a href=\'#><img class=pic id=oDIV6 height=199 src=\'images/6.gif\' width=184 border=0 style=\'BORDER-RIGHT: #999999 1px solid;DISPLAY: none; BORDER-TOP: #999999 1px solid; BORDER-LEFT: #999999 1px solid; BORDER-BOTTOM: #999999 1px solid\'></a></div>');
var MaxFrame = 6;
var bStart = 0;
var NowFrame = 1;
document.images['oDIV'+NowFrame].style.display='';
function fnToggle(){
	var next = parseInt(Math.random()*MaxFrame)+1;
	if (next = NowFrame){
		next = next + 1;	
	}
	if(next > MaxFrame) {
		NowFrame = MaxFrame;
		next = 1;
	}
	if(bStart == 0){
		bStart = 1;
		setTimeout('fnToggle()', 2000);
		return;
	}
	else{
		oTransContainer.filters[0].Apply();
		document.images['oDIV'+next].style.display = '';
		document.images['oDIV'+NowFrame].style.display = 'none';
		oTransContainer.filters[0].Play(duration=2);
		if(NowFrame > MaxFrame){
			NowFrame = 1;
		}
		else{
			NowFrame = next;
		}
	}
	setTimeout('fnToggle()', 6000);
}
fnToggle();