
	var image = new Array(2);
	image[0] = 'images/HmPgProjectPhotos/Photo4.jpg'
	image[1] = 'images/HmPgProjectPhotos/Photo5.jpg'
	
	function choosepic() {
	if (document.images) {
		index = Math.floor(Math.random() * image.length)
		document.base.src = image[index]
		}
	}
	