var photogallery1 = new Image();
var photogallery2 = new Image();
var photogallery3 = new Image();
var photogallery4 = new Image();
var photogallery5 = new Image();
var photogallery6 = new Image();
var photogallery7 = new Image();
var photogallery8 = new Image();
/*var photogallery9 = new Image();
var photogallery10= new Image();
var photogallery11= new Image();
var photogallery12= new Image();
var photogallery13= new Image();
var photogallery14= new Image();
var photogallery15= new Image();
var photogallery16= new Image();
var photogallery17= new Image();
var photogallery18= new Image();
var photogallery19= new Image();
var photogallery20= new Image();
var photogallery21= new Image();
var photogallery22= new Image();
var photogallery23= new Image();
var photogallery24= new Image();
var photogallery25= new Image();
var photogallery26= new Image();
var photogallery27= new Image();
var photogallery28= new Image();
var photogallery29= new Image();
var photogallery30= new Image();
var photogallery31= new Image();
var photogallery32= new Image();
var photogallery33= new Image();
var photogallery34= new Image();
var photogallery35= new Image();
var photogallery36= new Image();
var photogallery37= new Image();
var photogallery38= new Image();*/

//var imageLoc 	= "/images/conference09/";
//var imageLoc 	= "/images/conference2010/";
var imageLoc		= "/regina2010/images/conference/";

photogallery1.src = imageLoc + "Peter_Mansbridge.jpg";
photogallery2.src = imageLoc + "Keynote.jpg";
photogallery3.src = imageLoc + "Kevin Brown APR.jpg";
photogallery4.src = imageLoc + "Kellie Garrett ABC.jpg";
photogallery5.src = imageLoc + "John Kageorge.jpg";
photogallery6.src = imageLoc + "Delegates_Workshop.jpg";
photogallery7.src = imageLoc + "Blair Peberdy APR.jpg";
photogallery8.src = imageLoc + "Awards.jpg";

/*
photogallery1.src = imageLoc + "First Nations Univeristy.jpg";
photogallery2.src = imageLoc + "2 Credit  Regina Downtown.jpg";
photogallery3.src = imageLoc + "downtown regina2.jpg";
photogallery4.src = imageLoc + "Legislative at night.jpg";
photogallery5.src = imageLoc + "RCMPHeritage1.jpg";
photogallery6.src = imageLoc + "Delta outside.jpg";
photogallery7.src = imageLoc + "Legislative and lake.jpg";
photogallery8.src = imageLoc + "downtown regina.jpg";       


photogallery1.src = imageLoc + "G5Q0015.jpg";
photogallery2.src = imageLoc + "G5Q2667.jpg";
photogallery3.src = imageLoc + "G5Q1276.jpg";
photogallery4.src = imageLoc + "G5Q1181.jpg";
photogallery5.src = imageLoc + "G5Q1566.jpg";
photogallery6.src = imageLoc + "G5Q1592.jpg";
photogallery7.src = imageLoc + "G5Q1456.jpg";
photogallery8.src = imageLoc + "G5Q1332.jpg";
photogallery9.src = imageLoc + "G5Q1386.jpg";
photogallery10.src = imageLoc + "IMG_2844.jpg";
photogallery11.src = imageLoc + "ASC6800.jpg";
photogallery12.src = imageLoc + "G5Q3002.jpg";
photogallery13.src = imageLoc + "G5Q3029.jpg";
photogallery14.src = imageLoc + "G5Q2670.jpg";
photogallery15.src = imageLoc + "G5Q3161.jpg";
photogallery16.src = imageLoc + "G5Q2661.jpg";
photogallery17.src = imageLoc + "G5Q0225.jpg";
photogallery18.src = imageLoc + "G5Q2933.jpg";
photogallery19.src = imageLoc + "G5Q2902.JPG";
photogallery20.src = imageLoc + "G5Q2443.jpg";
photogallery21.src = imageLoc + "G5Q0638.jpg";
photogallery22.src = imageLoc + "G5Q0524.jpg";
photogallery23.src = imageLoc + "G5Q0410.jpg";
photogallery24.src = imageLoc + "G5Q0552.jpg";
photogallery25.src = imageLoc + "G5Q1485.jpg";
photogallery26.src = imageLoc + "G5Q2888.JPG";
photogallery27.src = imageLoc + "BSC2410.jpg";
photogallery28.src = imageLoc + "BSC2413.jpg";
photogallery29.src = imageLoc + "BSC2426.jpg";
photogallery30.src = imageLoc + "BSC2482.jpg";
photogallery31.src = imageLoc + "BSC2441.jpg";
photogallery32.src = imageLoc + "BSC2573.jpg";
photogallery33.src = imageLoc + "G5Q1212.jpg";
photogallery34.src = imageLoc + "G5Q2284.jpg";
photogallery35.src = imageLoc + "ASC6893.jpg";
photogallery36.src = imageLoc + "ASC6930.jpg";
photogallery37.src = imageLoc + "ASC6941.jpg";
photogallery38.src = imageLoc + "G5Q0014.jpg";*/

var n = 0;

function startPhotoTimer() {
	var time= new Date();
	hours= time.getHours();
	mins= time.getMinutes();
	secs= time.getSeconds();
	closePhotoTime=hours*3600+mins*60+secs;
	closePhotoTime+=3; // How many seconds til the next rotation
	PhotoTimer();
}

function PhotoTimer() {
	var time= new Date();
	hours= time.getHours();
	mins= time.getMinutes();
	secs= time.getSeconds();
	curTime=hours*3600+mins*60+secs
	if (curTime>=closePhotoTime){
		if (n < 8){ // The number 9 is the amount of banners that you have
			n++;
			document.photogallery.src = eval("photogallery" + n + ".src");
		}
		else{
			n = 1;
			document.photogallery.src = eval("photogallery" + n + ".src");
		}
		startPhotoTimer();
	}
	else{
		window.setTimeout("PhotoTimer()",1000);
	}
}

startPhotoTimer();