//Quotations Variables
numberOfQuotations = 14;
quotations = new Array(numberOfQuotations);
authors = new Array(numberOfQuotations);

//Quotation List seperated into quote and author arrays
quotations[0] = "Only through experience of trial and suffering can the soul be strengthened, ambition inspired, and success achieved.";
authors[0] = "Helen Keller";
quotations[1] = "The best teacher is the one who suggests rather than dogmatizes, and inspires his listener with the wish to teach himself.";
authors[1] = "Edward Bulwer-Lytton";
quotations[2] = "It is because modern education is so seldom inspired by a great hope that it so seldom achieves great results.";
authors[2] = "Bertrand Russell";
quotations[3] = "Add a clear idea of what inspires you, dedicate your energies to its pursuit and there is no knowing what you can achieve…";
authors[3] = "Pete Goss";
quotations[4] = "The past is for inspiration, not imitation, for continuation, not repetition.";
authors[4] = "Israel Zangwill";
quotations[5] = "A deadline is negative inspiration. Still, it's better than no inspiration at all.";
authors[5] = "Rita Mae Brown";
quotations[6] = "Genius is 1 percent inspiration and 99 percent perspiration.";
authors[6] = "Thomas A. Edison";
quotations[7] = "What is grace? It is the inspiration from on high: it is love; it is liberty.";
authors[7] = "Victor Hugo";
quotations[8] = "The glow of inspiration warms us; it is a holy rapture.";
authors[8] = "Ovid";
quotations[9] = "Inspiration grows into full-scale creation through persistence and imagination.";
authors[9] = "Carol Lloyd";
quotations[10] = "...everything can be a springboard for inspiration if we are willing to be open to the goodness of life.";
authors[10] = "Sarah Ban Breathnach";
quotations[11] = "Action always generates inspiration. Inspiration seldom generates action.";
authors[11] = "Frank Tibolt";
quotations[12] = "We shall draw from the heart of suffering itself the means of inspiration and survival.";
authors[12] = "Winston Churchill";
quotations[13] = "When inspiration does not come to me, I go halfway to meet it.";
authors[13] = "Sigmund Freud";
//quotations[14] = "";
//authors[14] = "";
//quotations[15] = "";
//authors[15] = "";
 

//Function to display random quote on page
function displayQuote()
{
	var now=new Date();
	randomNumber = now.getSeconds() % numberOfQuotations;
	document.write(quotations[randomNumber],"<br><div align=\"right\">-",authors[randomNumber],"</div>");
}