// JavaScript Document
// Random Quote Generator

var quotes=new Array() 

// Setup Quotes here
quotes[0] = "<p>&ldquo;Too often we underestimate the power of a touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around.&rdquo;</p><p class=\"author\"><em>&mdash;Leo Buscaglia</em></p>";
quotes[1] = "<p>&ldquo;Tenderness and kindness are not signs of weakness and despair, but manifestations of strength and resolution.&rdquo;</p><br /><p class=\"author\"><em>&mdash;Kahlil Gibran </em></p>";
quotes[2] = "<p>&ldquo;People will forget what you said, people will forget what you did, but people will never forget how you made them feel.&rdquo;</p><br /><p class=\"author\"><em>&mdash;Bonnie Jean Wasmund </em></p>";
quotes[3] = "<p>&ldquo;The only real voyage consists not in seeking new landscapes, but in having new eyes; in seeing the universe through the eyes of another, one hundred others&mdash;in seeing the hundred universes that each of them sees.&rdquo;</p><p class=\"author\"><em>&mdash;Marcel Proust </em></p>"
quotes[4] = "<p>&ldquo;It takes community to maintain a human.&rdquo; </p><br /><p class=\"author\"><em>&mdash;Earon Davis </em></p>";
quotes[5] = "<p>&ldquo;Wherever there is a human being, there is an opportunity for a kindness.&rdquo; </p><br /><p class=\"author\"><em>&mdash;Seneca</em></p>";

var q = quotes.length;
var numQ=Math.round(Math.random()*(q-1));
function displayQuote(){document.write(quotes[numQ]);}

displayQuote();

// Call the .js to display the quote within the page
// i.e. <script language="JavaScript" type="text/javascript" src="/scripts/random_quote.js">

