	<!-- Hide script from old browsers

	myQuotes = new Array("images/quote.gif","images/quote2.gif","images/quote3.gif","images/quote4.gif")
	imgCt = myQuotes.length 

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random() * imgCt))
			document.myPicture.src = myQuotes[randomNum]
		}
	}

	// End hiding script from old browsers -->
