var random = new Array ();

	random[0] = "We need to understand rhetoric in order to understand our world.  – Danielle, undergraduate student";
	random[1] = "Rhetoric helps you to explore the different options until you find what you’re looking for.  – Juelia, undergraduate student";
	random[2] = "Rhetoric is really the study of knowledge and how it is expressed and shared through language.  – Ludy, undergraduate student";
	random[3] = "Rhetoric is not what you and I thought it was.  It has a much more helpful side.  - Adam";
	random[4] = "With rhetoric, you are never done learning; it becomes a constant lesson, a lesson of who you are, your abilities, and the world around you.  – Juelia, undergraduate student";
	random[5] = "Rhetoric’s purpose is to create and demonstrate understanding of people, places, events, and situations.  When used effectively, rhetoric is benevolent rather than deceptive.  – Danielle, undergraduate student";
	random[6] = "With rhetoric, we must listen to one another… That is rhetoric at its best.  – Andrew, undergraduate student";
	random[7] = "Rhetoric is a tool to achieve the answers that will result in the common good.  – Rob, alumni, class of 2009";
	random[8] = "Rhetoric opens the channels of communication between people.  – Caity, undergraduate student";

// This number MUST be changed if more quotes are added, it must always be the last number in the sequence
var lastNum = 8;

var i = Math.floor((lastNum + 1) * Math.random());

document.write(random[i]);