quoteArray = new Array();


//include the following line for each quote
//quoteArray[quoteArray.length] = "[QUOTE]";


//quote1
quoteArray[quoteArray.length] = "\"The unexamined life is not worth living for a human being.\" <br><br> (Socrates in Apology)";

//quote2
quoteArray[quoteArray.length] = "\"Man is by nature a political animal.\" <br><br> (Aristotle, Politics 1.2)";

//quote3
quoteArray[quoteArray.length] = "\"The good of man must be the end of the science of politics.\" <br><br> (Aristotle)";

//quote4
quoteArray[quoteArray.length] = "\"I think I can see the whole destiny of America contained in the first Puritan who landed on those shores.\"  <br><br> (Tocqueville)";

//quote5
quoteArray[quoteArray.length] = "\"In the United States it is almost never said that virtue is beautiful.  They maintain that it is useful and they prove it every day.\" <br><br> (Tocqueville)";

//quote6
quoteArray[quoteArray.length] = "\"Politics, as a practice, whatever its professions, has always been a systematic organization of hatreds.\" <br><br> (Henry Adams)";

//quote7
quoteArray[quoteArray.length] = "\"Politics is the Study of Who Gets What, When, and How.\" <br><br>  (Harold Laswell)";

//quote8
quoteArray[quoteArray.length] = "\"The way to do research is to attack the facts at the point of greatest astonishment.\" <br><br> (Celia Green)";

//quote9
quoteArray[quoteArray.length] = "\"Globalization is everything and its opposite.\" <br><br>  (Thomas Friedman)";



//generate Random Number
var randNumQuote = randomNumberQuote(quoteArray.length);


function randomNumberQuote(maxNumber) {
var randNumberQuote=Math.floor(Math.random()*maxNumber); //or could use quoteArray.length
return  randNumberQuote;
}

function writeQuoteCode() {
document.write(quoteArray[randNumQuote]);
}