quote = new Array(5);
	quote[1] = "<img src='images/quotes/quote1.png' />";
	quote[2] = "<img src='images/quotes/quote2.png' />";
	quote[3] = "<img src='images/quotes/quote3.png' />";
	quote[4] = "<img src='images/quotes/quote4.png' />";
	quote[5] = "<img src='images/quotes/quote5.png' />";

x = Math.ceil(Math.random()*5);

document.write("<div align='center' >" + quote[x] + "</div>");




