// index.js for PeconicPhoto.com by David H. Nguyen

var photoArray = new Array("./assets/images/clear_pixel.gif","./assets/images/photo_01_310x310.jpg","./assets/images/photo_02_310x310.jpg","./assets/images/photo_03_310x310.jpg","./assets/images/photo_04_310x310.jpg","./assets/images/photo_05_310x310.jpg","./assets/images/photo_06_310x310.jpg","./assets/images/photo_07_310x310.jpg","./assets/images/photo_08_310x310.jpg","./assets/images/photo_09_310x310.jpg","./assets/images/photo_10_310x310.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];
}
