
var Quote = new Array();
/*Today = new Date();
thisday = Today.getDay();*/
Quote[0] = "<p class='quote'>&quot;Until he extends his circle of compassion to include all  living things, man will not himself find peace.&quot; </p><p class='quoteauthor'>&#8212;Albert  Schweitzer</p>";
Quote[1] = "<p class='quote'>&quot;He is great who confers the most benefits.&quot; </p><p class='quoteauthor'>&#8212;Ralph Waldo Emerson</p>";
Quote[2] = "<p class='quote'>&quot;The high destiny of the individual is to serve rather than to rule.&quot; </p><p class='quoteauthor'>&#8212;Albert Einstein</p>";
Quote[3] = "<p class='quote'>&quot;Leadership and learning are indispensable to each other.&quot; </p><p class='quoteauthor'>&#8212;John F. Kennedy</p>";
Quote[4] = "<p class='quote'>&quot;Courage is an inner resolution to go forward in spite of obstacles and frightening situations.&quot;</p><p class='quoteauthor'>&#8212;Martin Luther King Jr.</p>";
Quote[5] = "<p class='quote'>&quot;Education is the most powerful weapon which you can use to change the world.&quot; </p><p class='quoteauthor'>&#8212;Nelson Mandela</p>";
Quote[6] = "<p class='quote'>&quot;If you can dream it, you can do it.&quot; </p><p class='quoteauthor'>&#8212;Walt Disney.</p>";

/*function writeQuote() {
document.write(msg[thisday]);
}*/

var Q = Quote.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quote[whichQuotation]);}
/*showQuotation();*/