// JavaScript Document

//playSlideshow = true;
//currentImage = 1;

function loadPhotos() {
	if (document.images) {
		imgPhoto1 = new Image();
		imgPhoto1.src = "photos/dei-photo-001.jpg";
		imgPhoto2 = new Image();
		imgPhoto2.src = "photos/dei-photo-002a.jpg";
		imgPhoto3 = new Image();
		imgPhoto3.src = "photos/dei-photo-002b.jpg";
		imgPhoto4 = new Image();
		imgPhoto4.src = "photos/dei-photo-003.jpg";
		imgPhoto5 = new Image();
		imgPhoto5.src = "photos/dei-photo-004.jpg";
		imgPhoto6 = new Image();
		imgPhoto6.src = "photos/dei-photo-005.jpg";
		imgPhoto7 = new Image();
		imgPhoto7.src = "photos/dei-photo-006.jpg";
		imgPhoto8 = new Image();
		imgPhoto8.src = "photos/dei-photo-007.jpg";
		imgPhoto9 = new Image();
		imgPhoto9.src = "photos/dei-photo-008a.jpg";
		imgPhoto10 = new Image();
		imgPhoto10.src = "photos/dei-photo-008b.jpg";
		imgPhoto11 = new Image();
		imgPhoto11.src = "photos/dei-photo-009.jpg";
		imgPhoto12 = new Image();
		imgPhoto12.src = "photos/dei-photo-010.jpg";
		imgPhoto13 = new Image();
		imgPhoto13.src = "photos/dei-photo-011.jpg";
		imgPhoto14 = new Image();
		imgPhoto14.src = "photos/dei-photo-012.jpg";
		imgPhoto15 = new Image();
		imgPhoto15.src = "photos/dei-photo-013a.jpg";
		imgPhoto16 = new Image();
		imgPhoto16.src = "photos/dei-photo-013b.jpg";
		imgPhoto17 = new Image();
		imgPhoto17.src = "photos/dei-photo-014.jpg";
		imgPhoto18 = new Image();
		imgPhoto18.src = "photos/dei-photo-015.jpg";
		imgPhoto19 = new Image();
		imgPhoto19.src = "photos/dei-photo-016a.jpg";
		imgPhoto20 = new Image();
		imgPhoto20.src = "photos/dei-photo-016b.jpg";
		imgPhoto21 = new Image();
		imgPhoto21.src = "photos/dei-photo-017a.jpg";
		imgPhoto22 = new Image();
		imgPhoto22.src = "photos/dei-photo-017b.jpg";
		imgPhoto23 = new Image();
		imgPhoto23.src = "photos/dei-photo-018a.jpg";
		imgPhoto24 = new Image();
		imgPhoto24.src = "photos/dei-photo-018b.jpg";
	}	
	//setTimeout('playSlideshow()',5000);
}

function playSlideshow () {
	if (document.images) {
		while (playSlideshow == true) {
			//setTimeout
			if (currentImage == 24) { currentImage = 1; }
			else { currentImage++; }
			eval ("document.getElementByID(galleryThumb" + currentImage + ").style.borderColor = '#006334'");
			eval ("document.getElementByID(mainPhoto).src = imgPhoto" + currentImage + ".src");
		}
	}
}

function goToPhoto(imgNumber) {
	if (document.images) {
//		currentImage = imgNumber;
//		eval ("document.getElementByID(galleryThumb" + currentImage + ").style.borderColor = '#006334'");
		eval("document.mainPhoto.src = imgPhoto" + imgNumber + ".src");
	}
}