// JavaScript Document
function createQuote(){

	var quoteArray = new Array(
		"Genius is 1% inspiration and 99% perspiration",
		"The important thing is not to stop questioning",
		"The best way to predict the future is to invent it",
		"Science is built up of facts, as a house is with stones. But a collection of facts is no more a science than a heap of stones is a house.",
		"As far as the laws of mathematics refer to reality, they are not certain, as far as they are certain, they do not refer to reality.",
		"I can live with doubt and uncertainty. I think it's much more interesting to live not knowing than to have answers which might be wrong.",
		"The real question is not whether machines think but whether men do. Science is a long history of learning how not to fool ourselves.",
		"In short, science is what scientists do, and there are as many scientific methods as there are individual scientists.",
		"...the words Science and scientific are frequently abused by those who find it profitable to borrow reputation instead of earning it."
	)
	
	var sourceArray = new Array(
		"Inventor Thomas A. Edison",
		"Physicist Albert Einstein",
		"Physicist Albert Einstein",
		"Mathematician Henri Poincare",
		"Physicist Albert Einstein",
		"Physicist Richard P. Feynman",
		"Physicist Richard P. Feynman",
		"Physicist Percy Williams Bridgman",
		"Physicist Boris Podolsky"
	)
	
	var howManyQuotes = quoteArray.length - 1;
	var randomNumber = Math.round(Math.random() * howManyQuotes)
	var newQuote = quoteArray[randomNumber]
	var newSource = sourceArray[randomNumber]
	
	document.write('<span class="bannerQuote">&#8220;' + newQuote + '&#8221;</span><span class="bannerQuoteStartEnd"><br>' + newSource + '</span>')

	return true;
}