// JavaScript Document
var Quotation=new Array() // do not change this!

Quotation[0] = "Anyone who stops learning is old, whether at twenty or eighty. Anyone who keeps learning stays young. The greatest thing in life is to keep your mind young.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Henry Ford";
Quotation[1] = "An effort made for the happiness of others lifts us above ourselves.";
Quotation[2] = "The place to improve the world is first in one's own heart and head and hands.";
Quotation[3] = "Your big opportunity might be right where you are now.";
Quotation[4] = "Believe in yourself no matter what you choose. Keep a winning attitude And you can never lose.";
Quotation[5] = "Happiness doesn't depend on who you are or what you have; it depends solely upon what you think.";
Quotation[6] = "All things are possible until they are proved impossible.";
Quotation[7] = "Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down.";
Quotation[8] = "Be kind, for everyone you meet is fighting a harder battle. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - Plato";
Quotation[9] = "Invention is the mother of too many useless toys.";
Quotation[10] = "Try and fail; but don't fail to try.";
Quotation[11] = "Do not add years to life, add life to years.";
Quotation[12] = "Be true to yourself, the only person you are answerable to is you.";
Quotation[13] = "Real beauty is the glow of a loving heart reflecting on the face.";
Quotation[14] = "At the start of the career, what you learn is more important than what you earn.";
Quotation[15] = "Organise yourself well to have more time to do the things you love to do.";
Quotation[16] = "Genuine beauty of acquiring knowledge is that you can learn any time.";
Quotation[17] = "Failure means delay, not defeat.";
Quotation[18] = "Life is gift from God, what you make of it will be your gift to him.";
Quotation[19] = "In school, you get the lesson & then take the test..In life you take the test & then get the lesson.";
Quotation[20] = "Strive for excellence, not perfection.";
Quotation[21] = "A goal without a plan is just a wish.";
Quotation[22] = "They can conquer who believe they can."

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation()
{document.write(Quotation[whichQuotation]);}

showQuotation();
