// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array()

Quotation[0] = "To find what you seek in the road of life, the best proverb of all is that which says: &quot;Leave no stone unturned.&quot;<span> - Edward Bulwer Lytton</span>";
Quotation[1] = "Know what's weird? Day by day, nothing seems to change, but pretty soon... everything's different.<span>- Calvin from Calvin and Hobbes</span>";
Quotation[2] = "If your ship doesn't come in, swim out to it.<span> - Jonathan Winters</span>";
Quotation[3] = "The sublimity of wisdom is to do those things living that are desired when dying.<span> - Unknown</span>";
Quotation[4] = "There is more to life than increasing its speed.<span> - Gandhi</span>";


// ======================================

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();



