<!-- Hide script from old browsers
	// This script copyright 1997, Tom Negrino and Dori Smith.
	// This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed."
	// For more information, see <http://www.chalcedony.com/javascript/>.
	// This script may be used and modified, but the copyright notice must remain intact.

	var myPix = new Array("images/scene1.jpg","images/scene2.jpg","images/scene3.jpg")

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random() * 10)) % 3
			document.myPicture.src = myPix[randomNum]
		}
	}
		
	// End hiding script from old browsers --> 

