function randquote()
{

	quotes = new Array(10);

	quotes[0] = "EAST is like a box of Chocolates- there is a lot of variety."
	quotes[1] = "<br>This is hard. This is real. This is EAST."
	quotes[2] = "At one look at this planet, an outsider would say, 'take me to your manager.'"
	quotes[3] = "The motion of the ocean is how we ride. We are riding dirty."
	quotes[4] = "Our Marine Biology Research Class is the most worthwhile class I have this year."
	quotes[5] = "EAST has improved my leadership and team management skills."
	quotes[6] = "The class has taught me how GPS is applied in research and data collecting"
	quotes[7] = "The projects run a lot smoother when I get out of the way. <br> -Dominique Evans"
	quotes[8] = "We learned how do use GPS and GIS and more importantly we worked as a team."
	quotes[9] = "<br>I learned CSS and Java in EAST. <br> -Webmaster"

	index = Math.floor(Math.random() * quotes.length);
	var quote = quotes[index];
	document.write(quote);
}