<!--
timer = 4000;
timerID = 0;
Tran = 0;
NoOfImg = 5;
switcher = "true";
photo = 2;

function showPhoto() {
	if (switcher == "true")
	{
		if (document.images.Photo1.filters) {
			document.images.Photo1.style.filter = 'revealTrans(transition=' + Tran + ',duration=2);';
			document.images.Photo1.filters[0].apply();
		}
			document.images.Photo1.src = 'UserFiles/images/banners/banner_'  + photo + '.jpg';
		if (document.images.Photo1.filters) {
			document.images.Photo1.filters[0].play();
		}

		photo++;
		if (photo > NoOfImg)
			photo = 1;
		
		Tran++;
		if (Tran >= 24)
			Tran = 0;

		timerID = setTimeout("showNext();", timer);

	}
}

function showNext() {		
	
	clearTimeout(timerID);
	switcher = "true";
	showPhoto();
	switcher = "false";
}


function MM_preloadImages() { //v3.0
	var d=document;
 	if (d.images) {
	 	if(!d.MM_p) d.MM_p=new Array();
	   	var i, j=d.MM_p.length, a = MM_preloadImages.arguments; 
		for(i=0; i<a.length; i++) {
			if (a[i].indexOf("#")!=0){ 
	   			d.MM_p[j]=new Image; 
				d.MM_p[j++].src=a[i];
				//alert("load " +a[i]);
			}
		}
	}
}

MM_preloadImages('UserFiles/images/banners/banner_1.jpg','UserFiles/images/banners/banner_2.jpg','UserFiles/images/banners/banner_3.jpg','UserFiles/images/banners/banner_4.jpg','UserFiles/images/banners/banner_5.jpg');

setTimeout("showPhoto()",timer);

-->
