<!-- Hide script from old browsers

	myPix = new Array("images/ch1.jpg","images/ch2.jpg","images/ch3.jpg","images/ch4.jpg","images/ch5.jpg","images/ch6.jpg","images/ch7.jpg","images/ch8.jpg","images/ch9.jpg","images/ch10.jpg","images/ch11.jpg","images/ch12.jpg","images/ch13.jpg","images/ch14.jpg","images/ch15.jpg")
	imgCt = myPix.length 

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random() * imgCt))
			document.myPicture.src = myPix[randomNum]
		}
	}

	// End hiding script from old browsers -->
