	myQuotes = new Array("Thanks.<br> - Joe",
						 "You saved me from foreclosure!<br> - Nick ",
						 "You guys saved  me a fortune. <br> -Steve")
	imgCt = myQuotes.length
	
	function chooseQuote() {
		if (document.images){
			randomNum = Math.floor((Math.random() * imgCt))
			document.writeln(myQuotes[randomNum])
		}
	}



