var quotes=new Array();
quotes[0] = "I believe that a scientist looking at nonscientific problems is just as dumb as the next guy.";
quotes[1] = "Physicists like to think that all you have to do is say, these are the conditions, now what happens next?";
quotes[2] = "There are 10^11 stars in the galaxy. That used to be a huge number. But it's only a hundred billion. It's less than the national deficit! We used to call them astronomical numbers. Now we should call them economical numbers.";
quotes[3] = "The first principle is that you must not fool yourself - and you are the easiest person to fool.";
quotes[4] = "Prediction is very difficult, especially about the future.";
quotes[5] = "Your theory is crazy, but it's not crazy enough to be true.";
quotes[6] = "Do not worry about your difficulties in Mathematics. I can assure you mine are still greater.";
quotes[7] = "I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones.";
quotes[8] = "Any man whose errors take ten years to correct is quite a man.";
quotes[9] = "All science is either physics or stamp collecting.";
quotes[10] = "Be less curious about people and more curious about ideas.";
quotes[11] = "Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.";
var authors=new Array();
authors[0]="Richard Feynman";
authors[1]="Richard Feynman";
authors[2]="Richard Feynman";
authors[3]="Richard Feynman";
authors[4]="Niels Bohr";
authors[5]="Niels Bohr";
authors[6]="Albert Einstein";
authors[7]="Albert Einstein";
authors[8]="James Robert Oppenheimer";
authors[9]="Rutherford";
authors[10]="Marie Sklodowska Curie";
authors[11]="Marie Sklodowska Curie";


var q = quotes.length;
var whichquote=Math.round(Math.random()*(q-1));
function showquote()
{
	document.write(quotes[whichquote]);
	document.write('</br> -' );
	document.write(authors[whichquote]);
	
}
showquote();
