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

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = '\"Get a bicycle. You will not regret it, if you live.\"<br />&#8212;Mark Twain';
Quotation[1] = '\"Every time I see an adult on a bicycle, I no longer despair for the future of mankind.\"<br />&#8212;H.G. Wells';
Quotation[2] = '\"I will tell you what I think of bicycling.<br />I think it has done more to emancipate women than any one thing in the world. I rejoice every time I see a woman ride by on a bike.\"<br />&#8212;Susan B. Anthony';
Quotation[3] = '\"Cycle tracks will abound in Utopia.\" &#8212;H.G. Wells';
Quotation[4] = '\"Think of bicycles as rideable art that can just about save the world.\"<br />&#8212Grant Petersen';
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();