	var quotes = new Array("I never did anything worth doing by accident, nor did any of my inventions come by accident; they came by work.", "Thomas Edison",
                             "Intuition is the source of scientific knowledge.", "Aristotle",
				     "The universe is full of magical things, patiently waiting for our wits to grow sharper.","Eden Phillpotts",
                             "Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.","Albert Einstein",
					"There is no friend as loyal as a book.","Ernest Hemingway",
					"The important thing is not to stop questioning.","Albert Einstein",
					"Real knowledge is to know the extent of one's ignorance.", "Confucius",
					"Knowledge is power.","Francis Bacon",
					"Knowledge comes, but wisdom stays.","Alfred Tennyson",
					"Shoot for the moon. Even if you miss it you will land among the stars.","Les Brown",
					"My goal is simple. It is complete understanding of the universe, why it is as it is and why it exists at all.","Stephen Hawking",
					"Research is what I'm doing when I don't know what I'm doing.","Werner von Braun",
					"The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us.","Calvin and Hobbes (Bill Watterson)",
					"Give me a firm place to stand and I will move the earth.","Archimedes",
					"If we knew what it was we were doing, it would not be called research, would it?","Albert Einstein",
					"Enough research will tend to support your theory.","Murphy's Law of Research",
					"You do not really understand something unless you can explain it to your grandmother.","Albert Einstein",
					"The AI problem is one of the hardest science has ever undertaken.","Marvin Minsky");
	r = Math.random() * quotes.length;
	r = Math.round(r/2.0-0.5);
	quo = quotes[2*r];
	per = quotes[2*r+1]; 
