
function randomQuote(){

		intRandom = Math.floor((Math.random() * 6)) + 1;

		quotename = "images/quote" + intRandom + ".gif";
	
		document.imgQuote.src = quotename
	}

