// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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] = "The way to gain a good reputation, is to endeavor to be what you desire to appear. - Socrates";
Quotation[1] = "If we all did the things we are capable of, we would astound ourselves. - Thomas Edison";
Quotation[2] = "Knowing yourself is the beginning of all wisdom. - Aristotle";
Quotation[3] = "The only journey is the journey within. - Rainer Maria Rilke";
Quotation[4] = "The best way out is always through. - Robert Frost";
Quotation[5] = "The seat of knowledge is in the head, of wisdom, in the heart. - William Hazlitt";
Quotation[6] = "Happiness is not a matter of events, it depends upon the tides of the mind. - Alice Meynell";
Quotation[7] = "There is more to life than increasing its speed. - Mahatma Ghandi";
Quotation[8] = "The best way to prepare for life is to begin to live. - Elbert Hubbard";
Quotation[9] = "Life is a pure flame, and we live by an invisible sun within us. - Sir Thomas Brown";
Quotation[10] = "Each morning we are born again. What we do today is what matters most. - Buddha";
Quotation[11] = "Listen and attend with the ear of your heart. - St. Benedict";
Quotation[12] = "Be aware of what is in you. Announce it, pronounce it, produce it and give birth to it. - Meister Eckart";
Quotation[13] = "Just remain in center watching. And then forget you were there. - Lao-Tsu";

// ======================================
// 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();
