// gardens.js for TheMainStay.com by David H. Nguyen

var photoArray = new Array("http://www.themainstay.com/images/clear-pixel.gif","http://www.themainstay.com/images/grounds_1.jpg","http://www.themainstay.com/images/grounds_2.jpg","http://www.themainstay.com/images/grounds_3.jpg","http://www.themainstay.com/images/grounds_4.jpg","http://www.themainstay.com/images/grounds_5.jpg","http://www.themainstay.com/images/grounds_6.jpg","http://www.themainstay.com/images/grounds_7.jpg","http://www.themainstay.com/images/grounds_8.jpg","http://www.themainstay.com/images/grounds_9.jpg","http://www.themainstay.com/images/pool_1.jpg","http://www.themainstay.com/images/pool_2.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];
}
