var Quotation=new Array()
Quotation[0] = "We are all motivated by a keen desire for praise, and the better a man is, the more he is inspired to glory.";
Quotation[1] = "Nothing can stop the man with the right mental attitude from achieving his goal; nothing on earth can help the man with the wrong mental attitude.";
Quotation[2] = "Keep steadily before you the fact that all true success depends at last upon yourself.";
Quotation[3] = "The thing always happens that you really believe in; and the belief in a thing makes it happen.";
Quotation[4] = "The greatest results in life are usually attained by simple means and the exercise of ordinary qualities. These may for the most part be summed in these two: common-sense and perseverance.";
Quotation[5] = "Failures do what is tension relieving, while winners do what is goal achieving.";
Quotation[6] = "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.";
Quotation[7] = "I cannot give you the formula for success, but I can give you the formula for failure--which is: Try to please everybody.";
Quotation[8] = "Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.";
Quotation[9] = "If you wish success in life, make perseverance your bosom friend, experience your wise counselor, caution your elder brother, and hope your guardian genius.";
Quotation[10] = "Life is like a game of cards. The hand that is dealt you represents determinism; the way you play it is free will."
Quotation[11] = "Unrest of spirit is a mark of life; one problem after another presents itself and in the solving of them we can find our greatest pleasure."
Quotation[12] = "The whole of life is but a moment of time. It is our duty, therefore to use it, not to misuse it."
Quotation[13] = "There are no classes in life for beginners: right away you are always asked to deal with what is most difficult."
Quotation[14] = "The first step in the acquisition of wisdom is silence, the second listening, the third memory, the fourth practice, the fifth teaching others."
Quotation[15] = "The only medicine for suffering, crime, and all the other woes of mankind, is wisdom."
Quotation[16] = "We think too small. Like the frog at the bottom of the well. He thinks the sky is only as big as the top of the well. If he surfaced, he would have an entirely different view."
Quotation[17] = "Men give me some credit for genius. All the genius I have lies in this: When I have a subject in hand, I study it profoundly. Day and night it is before me. I explore it in all its bearings. My mind becomes pervaded with it. Then the effort which I make is what the people call the fruit of genius. It is the fruit of labor and thought."
Quotation[18] = "The aim of education should be to teach us how to think, rather than what to think."
Quotation[19] = "All truly wise thoughts have been thought already, thousands of times; but to make them truly ours, we must think them over again honestly, till they take firm root in our personal experience."
Quotation[20] = "Learning without thought is labor lost; thought without learning is perilous."
Quotation[21] = "The ability to concentrate and to use your time well is everything if you want to succeed in business--or almost anywhere else for that matter."
Quotation[22] = "A man should have any number of little aims about which he should be conscious and for which he should have names, but he should have neither name for, nor consciousness concerning, the main aim of his life."
Quotation[23] = "The significance of a man is not in what he attains but in what he longs to attain."
Quotation[24] = "Our plans miscarry because they have no aim. When a man does not know what harbor he is making for, no wind is the right wind."
Quotation[25] = "Thoughts rule the world."

// ======================================
// 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();