
function displayQuote() {	

	var rand = (Math.floor(Math.random() * 66)+1);
	
	var filename = "quote" + rand + ".gif";
	
	document.write("<img src='images/soulfood/" + filename + "' alt='quote'>");
}

displayQuote();

