myPix = new Array("images/home/batchelor.jpg", "images/home/hanger.jpg", "images/home/noahrocks.jpg", "images/home/40.jpg")
	imgCt = myPix.length 

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random() * imgCt))
			document.myPicture.src = myPix[randomNum]
		}
	}