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] = "Nothing is more dangerous than an ideas when it is the only one you have.<br>  - Emile Chartier";
Quotation[1] = "Throw the fortunate man into the Nile and he will come out with a fish in his mouth.<br>  - African Proverb";
Quotation[2] = "It is not good asking the spirits to help you run if you don’t mean to sprint.<br>  - African Proverb";
Quotation[3] = "It is difficult to get a man to understand something when his salary depends upon his not understanding it.<br>  - Upton Sinclair";
Quotation[4] = "The bird that does on living always gets new feathers.<br>  - African Proverb";
Quotation[5] = "Respond intelligently even to unintelligent treatment.<br>  - Lao-Tsu";
Quotation[6] = "If you don’t take care of your customer someone else will.<br> - Anonymous";
Quotation[7] = "Most of what we call management consists in making it difficult for people to work.<br>  - Peter Drucker";
Quotation[8] = "Long-range planning does not deal with future decisions, but with the future of present decisions.<br>  - Peter Drucker";
Quotation[9] = "Treat people as if they were what they ought to be and you help them to become what they are capable of being.<br>  - Johann W. Von Goethe";
Quotation[10] = "A problem well stated is a problem half solved.<br>  - Anonymous";
Quotation[11] = "Humor is creating space where there was no space.<br> - Anonymous";
Quotation[12] = "If you don’t know where you’re going, any path will take you there.<br>  - Sioux Proverb";
Quotation[13] = "The best way to predict the future is to invent it.<br>  - Alan Kay";
Quotation[14] = "Every moment spent planning saves three or four in execution.<br>  - Anonymous";
Quotation[15] = "Don’t underestimate the power of purpose.<br>  - Anonymous";
Quotation[16] = "Life shrinks or expands in proportion to one’s courage.<br>  - Anais Nin";
Quotation[17] = "There are a lot of changes going on in this place. Don’t you think it’s time for make some of your own.<br>  - Anonymous";
Quotation[18] = "It isn’t that they can’t see the solution. It is that they can’t see the problem.<br>  - G. K. Chesterton";*/

Quotation[0] = "If you don't know where you're going, any path will take you there.<br>  - Sioux Proverb";
Quotation[1] = "It is impossible to live without failing at something, unless, you live so cautiously that you might as well not have lived at all, in which case you fail by default.<br>  - J.K. Rawling";
Quotation[2] = "We don't stop playing because we grow old; we grow old because we stop playing.<br>  - George Bernard Shaw";
Quotation[3] = "Technology is so much fun but we can drown in our technology. The fog of information can drive out knowledge.<br>  - Daniel J. Boorstin";
Quotation[4] = "Excellence is to do a common thing in an uncommon way.<br>  - Booker T. Washington";
Quotation[5] = "Something made greater by ourselves and in turn that makes us greater.<br>  - Maya Angelou";
Quotation[6] = "Courage doesn't always roar. Sometimes courage is the quiet voice at the end of the day saying, I will try again tomorrow.<br>  - Mary Anne Radmacher";
Quotation[7] = "If you want others to be happy, practice compassion. If you want to be happy, practice compassion.<br>  - His Holiness the Dalai Lama";
Quotation[8] = "Begin challenging your own assumptions. Your assumptions are your windows on the world. Scrub them off every once and a while, or the light won't come in.<br>  - Peter Drucker";
Quotation[9] = "Everything you can imagine is real.<br>  - Pablo Picasso";
Quotation[10] = "A great many people think they are thinking when they are merely re-arranging their prejudices.<br>  - William James";
Quotation[11] = "As was his language, so was his life.<br> - Seneca";

// ======================================
// 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();

