// weddings.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/wedding_1.jpg","http://www.themainstay.com/images/wedding_2.jpg","http://www.themainstay.com/images/wedding_3.jpg","http://www.themainstay.com/images/wedding_4.jpg","http://www.themainstay.com/images/wedding_5.jpg","http://www.themainstay.com/images/wedding_6.jpg","http://www.themainstay.com/images/wedding_7.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];
}
