/*
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================
*/
function showQuotation() {
var Quotation=new Array(); 

Quotation[0] = "\"Adventure is worthwhile.\" - Aristotle" 
Quotation[1] = "\"You must pray that the way be long, full of adventures and experiences.\" - Peter Constantine Cavafy"
Quotation[2] = "\"Life is either a great adventure or nothing.\" - Helen Keller"
Quotation[3] = "\"I thought of that while riding my bike.\" - Albert Einstein, on the theory of relativity"
Quotation[4] = "\"When I see an adult on a bicycle, I do not despair for the future of the human race.\" - H.G. Wells"
    
    var whichQuotation=Math.round(Math.random()*(Quotation.length-1));
	document.write(Quotation[whichQuotation]);
}


