/**
 * @author coder
 */
<!--
			
/*
Original Script by FPMC at http://jsarchive.8m.com		
*/

//set image paths
src = [
        "images/frontpage/heavensBest1.png", "images/frontpage/heavensBest2.png", "images/frontpage/heavensBest3.png",
        "images/frontpage/heavensBest4.png", "images/frontpage/heavensBest5.png", "images/frontpage/heavensBest6.png",
        "images/frontpage/heavensBest7.png"
      ]

//set duration for each image
duration = 4;

//Please do not edit below
ads=[]; ct=0;
function switchImage() 
{
	var n=(ct+1)%src.length;
	if (ads[n] && (ads[n].complete || ads[n].complete==null)) 
	{
		document["slideShowImage"].src = ads[ct=n].src;
	}
	ads[n=(ct+1)%src.length] = new Image;
	ads[n].src = src[n];
	setTimeout("switchImage()",duration*1000);
}
				
onload = function()
{
	if(document.images)
	switchImage();
}
//-->