
var quote = new Array ();
quote[0] = "Keep your eyes on the stars, and your feet on the ground - Theodore Roosevelt";
quote[1] = "Imagination is more important than knowledge - Albert Einstein";
quote[2] = "Logic will get you from A to B. Imagination will take you everywhere - Albert Einstein";
quote[3] = "We Judge ourselves by what we feel capable of doing, while others Judge us by what we have already done";
quote[4] = "All our dreams can come true, if we have the courage to pursue them";
quote[5] = "Forget mistakes. Forget failure. Forget everything except what you're going to do now and do it. Today is your lucky day";
quote[6] = "Be careful who you share your dreams with. It may be too big for the other person to understand";
quote[7] = "You make the world a better place by making yourself a better person - Scott Sorrell";
quote[8] = "I have failed over and over and over again in my life and that is why I succeed - Michael Jordan";
quote[9] = "Science is the attempt to make the chaotic diversity of our sense experience correspond to a logically uniform system of thought - A. Einstein";
quote[10] = "There is a difference between seeing and proving and it is this difference which divides Art from Science - K. Lorenz";

var x = quote.length;
var choosequote=Math.round(Math.random()*(x-1));
function showquote(){document.write(quote[choosequote]);}
showquote();

