// index.js for WaynesWaterLimo.com by David H. Nguyen

var photoArray = new Array("./assets/images/clear_pixel.gif","./assets/images/01_300x225.jpg","./assets/images/02_300x225.jpg","./assets/images/03_300x225.jpg","./assets/images/04_300x225.jpg","./assets/images/05_300x225.jpg");

function initArray(photoNum) {
	if (document.images) {
		for (var i = 0; i < photoArray.length; i++) {
		document.images["largePhoto"].src=photoArray[i];
		}
		changeImage(photoNum);
	}
}

function changeImage(photoNo) {
	document.images["largePhoto"].src=photoArray[photoNo];
}
