var quotation=new Array();

quotation[0] = "<p class='quotestring'>It is not the strongest of the species that survives, nor the most intelligent, but the most responsive to change</p><p class='person'>Charles Darwin</p>";
quotation[1] = "<p class='quotestring'>There is no passion to be found in playing small - in settling for a life that is less than the one you are capable of living</p><p class='person'>N.Mandela</p>";
quotation[2] = "<p class='quotestring'>The quality of a persons life is in direct proportion to their commitment to excellence, regardless of their chosen field of endeavour</p><p class='person'>Vince Lombardi</p>";
quotation[3] = "<p class='quotestring'>Wealth is not only what you have but who you are</p><p class='person'>Sterling W. Sill</p>";
quotation[4] = "<p class='quotestring'>We are what we repeatedly do, Excellence, then, is not an act - but a habit</p><p class='person'>Aristotle</p>";
quotation[5] = "<p class='quotestring'>Our Life is what our thoughts make it</p><p class='person'>Joy Gower</p>";

var q = quotation.length;
var whichquotation=Math.round(Math.random()*(q-1));
function showquotation(){
	document.write(quotation[whichquotation]);

}

