// index.js for HarborKnoll.com by David H. Nguyen

var photoArray = new Array("assets/images/house_549x377_0.jpg","assets/images/house_549x377_1.jpg","assets/images/house_549x377_2.jpg","assets/images/house_549x377_3.jpg");

function initArray(photoNum) {
	if (document.images) {
		for (var i = 0; i < photoArray.length; i++) {
		document.largePhoto.src=photoArray[i];
		}
		changeImage(photoNum);
	}
}

function changeImage(photoNo) {
	document.largePhoto.src=photoArray[photoNo];
}
