					
					
					//set image paths
					src = ["images/FrontPage_0.jpg", "images/FrontPage_1.jpg", "images/FrontPage_2.jpg", "images/FrontPage_3.jpg", "images/FrontPage_4.jpg", "images/FrontPage_5.jpg", "images/FrontPage_6.jpg", "images/FrontPage_7.jpg", "images/FrontPage_8.jpg", "images/FrontPage_9.jpg", "images/FrontPage_10.jpg", "images/FrontPage_11.jpg"]

					//set duration for each image
					duration = 2;

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