// ==============================================
var Quotation=new Array() // do not change this!
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!
Quotation[0] = "\"People seem not to see that their opinion of the world is also a confession of character. \" <br><br> -- Ralph Waldo Emerson";
Quotation[1] = "\"Man becomes great exactly in the degree to which he works for the welfare of his fellow men.\" <br><br> -- Mahatma Gandhi";
Quotation[2] = "\"The difference between a successful person and others is not a lack of strength, not a lack of knowledge, but rather a lack in will.\" <br><br> -- Vince Lombardi";
Quotation[3] = "\"Every gun that is made, every warship launched, every rocket fired, signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. \" <br><br> -- Dwight D Eisenhower";
Quotation[4] = "\"I'm a great believer in luck.  I find the harder I work the more I have of it.\" <br><br> -- Thomas Jefferson";
Quotation[5] = "\"First ask yourself: What is the worst that can happen?  Then prepare to accept it.  Then proceed to improve on the worst. \" <br><br> -- Dale Carnegie";
Quotation[6] = "\"We all have possibilities we don't know about.  We can do things we don't even dream we can do.\" <br><br> -- Dale Carnegie";
Quotation[7] = "\"Most folks are about as happy as they make up their minds to be.\" <br><br> -- Abraham Lincoln";
Quotation[8] = "\"We either make ourselves miserable, or we make ourselves strong.  The amount of work is the same. \" <br><br> -- Carlos Castaneda";
Quotation[9] = "\"The road to success is usually off the beaten path.\" <br><br> -- Frank Tyger";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
































