			    var num_quotes = 5
			    var quotes = new Array(num_quotes)

		    quotes [0] = "Fortune cookie says: &quot;You have a deep appreciation of arts and music.&quot;"
		    quotes [1] = "Fortune cookie says: &quot;You can open doors with your charm and patience.&quot;"
		    quotes [2] = "Fortune cookie says: &quot;Your talents will be recognized and suitably rewarded&quot;"
		    quotes [3] = "Fortune cookie says: &quot;You are a bundle of energy, always on the go&quot;"
		    quotes [4] = "Fortune cookie says: &quot;You need a change in your environment. Take a vacation!&quot;"

		    var n = Math.floor(Math.random() * num_quotes)
		    document.write( quotes[n] )