
var quotesList=new Array(

"Do not worry about your difficulties in mathematics; I can assure you that mine are still greater. <br /> ~Albert Einstein",
"God does not care about our mathematical difficulties. He integrates empirically. <br /> ~Albert Einstein",
"Science without religion is lame; religion without science is blind. <br /> ~Albert Einstein",
"Math is nature's language; its method of  communicating directly with us; everything is numbers. <br /> ~Charles Eppes from CBS's Numb3rs",
"Pure mathematics is, in its way, the poetry of logical ideas. <br /> ~Albert Einstein ",
"Mathematics is the alphabet with which God has written the universe.<br /> ~Galileo Galilei",
"[The universe] cannot be read until we have learnt the language and become familiar with the characters in which it is written. It is written in mathematical language, and the letters are triangles, circles and other geometrical figures, without which means it is humanly impossible to comprehend a single word. <br /> ~Galileo Galilei",
"If everyone is thinking alike, then somebody isn't thinking.<br /> ~George S. Patton",
"The laws of nature are but the mathematical thoughts of God. <br /> ~Euclid",
"In order to make an apple pie from scratch, you must first create the universe.<br/> ~Carl Sagan"
"Go down deep enough into anything and you will find mathematics. <br />~Dean Schlicter",
"If there is a God, he's a great mathematician. <br /> ~Paul Dirac",
"When we say the Pledge of Allegiance, we say, '...with liberty and justice for all.' Well what part of <i>all</i> don't people understand?<br/>~Patricia Schroeder",
"Physics is mathematical not because we know so much about the physical world, but because we know so little; it is only its mathematical properties that we can discover. <br /> ~Bertrand Russell",
"If I have seen farther than other men, it is because I have stood on the shoulders of giants. <br /> ~Isaac Newton",
"Math is like love: a simple idea but it can get complicated. <br /> ~R.Drabek",
"A mathematician is a blind man in a dark room looking for a black cat which isn't there. <br />~Charles Darwin",
"The mathematician does not study pure mathematics because it is useful; he studies it because he delights in it and he delights in it because it is beautiful. <br /> ~J.H. Poincare",
"For the things of this world cannot be made known without a knowledge of mathematics. <br /> ~Roger Bacon",
"Black holes result from God dividing the universe by zero.<br /> ~Author Unknown",
"Trigonometry is a sine of the times. <br /> ~Author Unknown",
"God is real, unless declared integer. <br /> ~Author Unknown",
"Infinity is a floorless room without walls or ceiling. <br /> ~Author Unknown",
"Knowledge is the antidote to fear. <br /> ~Ralph Waldo Emerson",
"When we make college more affordable, we make the American dream more achievable. <br /> ~Former US Presidet Bill Clinton",
"Teachers open the door. You enter by yourself. <br /> ~Chinese Proverb",
"When one teaches, two learn. <br /> ~Robert Heinlein",
"You can have anything you want, if you want it badly enough. You can be anything you want to be, do anything you set out to accomplish, if you hold to that desire with singleness of purpose. <br> ~Lincoln"
);

function quoteGenerator() 

{

var quote=Math.floor(Math.random()*quotesList.length); 
document.write(quotesList[quote]);

}
