var quotes=new Array(5);

quotes[0] = "\"I have no particular talent. I am merely inquisitive.\" - Albert Einstein";

quotes[1] = "\"It's not that I'm so smart , it's just that I stay with problems longer.\" - Albert Einstein";

quotes[2] = "\"The only thing that interferes with my learning is my education.\" - Albert Einstein";

quotes[3] = "\"Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.\" - Albert Einstein";

quotes[4] = "\"The most incomprehensible thing about the universe is that it is comprehensible.\" - Albert Einstein";

quotes[5] = "\"To myself I am only a child playing on the beach, while vast oceans of truth lie undiscovered before me.\" - Isaac Newton";

quotes[6] = "\"Even a stopped clock shows the right time twice a day.\" - Marwood"; 

quotes[7] = "\"Some of the Laziest people are the smartest people.\" - Yogesh Kondareddy"; 

quotes[8] = "\"Tact is the knack of making a point without making an enemy.\" - Isaac Newton";

quotes[9] = "\"Anything that can possibly go wrong, does.\" - Murphy's Law";

quotes[10] = "\"Discontent is the first necessity of progress.\" - Thomas A. Edison"; 

quotes[11] = "\"The aspects of things that are most important for us are hidden because of their simplicity and familiarity.\" - Ludwig Wittgenstein";

quotes[12] = "\"Simplicity is the ultimate sophistication.\" - Leonardo da Vinci";

quotes[13] = "\"Education is learning what you didn't even know you didn't know.\" - Daniel J. Boorstin";

quotes[14] = "\"We can't solve problems by using the same kind of thinking we used when we created them.\" - Albert Einstein";

quotes[15] = "\"If we knew what it was we were doing, it would not be called research, would it?.\" - Albert Einstein";

quotes[16] = "\"If you can't explain it simply, you don't understand it well enough.\" - Albert Einstein";

n = Math.floor(Math.random()*16);
document.write(quotes[n]);
