function loadQuote() {
var qouteArray = new Array(7);
	qouteArray[0] = "<p>The best preparation for tomorrow is to do today's work superbly well.</p><p><b>Carl Hubbel</b></p>";
	qouteArray[1] = "<p>We are often so busy putting out fires, so to speak, that we find it difficult to do the planning that would prevent those fires from occuring in the first place.</p><p><b>Gustav Metzman</b></p>";
	qouteArray[2] = "<p>Plan ahead: It wasn't raining when Noah built the ark.</p><p><b>Richard Cushing</b></p>";
	qouteArray[3] = "<p>The general who wins a battle makes many calculations before the battle is fought. The general who loses a battle makes but few calculations beforehand.</p><p><b>The Art of War By Sun Tzu</b> - Translated by Lionel Giles</p>";
	qouteArray[4] = "<p>A Lighter View on Planning.<br>Alice arrived at a crossroad. Alice asks the Cat 'Would you tell me please, which way I ought to go from here?'. 'That depends a good deal on where you want to get to' said the Cat. 'I don’t much care where' said Alice. 'Then it doesn’t matter which way you go' said the Cat.</p><p><b>Through the Looking Glass By Lewis Carrol</b></p>";
	qouteArray[5] = "<p>I thatched my roof when the sun was shining, and now I am not afraid of the storm.</p><p><b>George F. Stivers</b></p>";
	qouteArray[6] = "<p>The man who is prepared has his battle half fought.</p><p><b>Miguel De Cervantes</b></p>";
	qouteArray[7] = "<p>The best preparation for tomorrow is to do today's work superbly well.</p><p><b>Carl Hubbel</b></p>";
	
	
	var result = Math.floor(Math.random() * 7);
	
	
	document.getElementById("SiteQuote").innerHTML = qouteArray[result];
}