// ==============================================
// 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] = "\"What lies behind us and what lies before us are tiny matters compared to what lies within us.\" \<p align=right><strong>Ralph Waldo Emerson\</strong></p>";
Quotation[1] = "\"Do not go where the path may lead, go instead where there is no path and leave a trail.\" \<p align=right><strong>Ralph Waldo Emerson\</strong></p>";
Quotation[2] = "\"None of the secrets of success will work unless you do.\" \<p align=right><strong>Vic Harville\</strong></p>";
Quotation[3] = "\"Ask and you shall receive\"";
Quotation[4] = "\"Even if you are on the right track, you'll get run over if you just sit there.\" \<p align=right><strong>Will Rogers\</strong></p>";
Quotation[5] = "\"Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it.  Begin it NOW.\" \<p align=right><strong>Goethe\</strong></p>";
Quotation[6] = "\"When you come to the end of everything you know and are faced with the darkness of the unknown, earth is knowing one of two things will happen.  Either there will be something solid for you to stand on, or you will be tought how to fly.\" \<p align=right><strong>Barbara J. Winter\</strong></p>";
Quotation[7] = "\"Three grand essentials to happiness in this life are something to do, something to love and something to hope for.\" \<p align=right><strong>Joseph Addison\</strong></p>";
//Quotation[8] = "Love the river's \<strong>beauty\</strong>, but live on a hill.";

// ======================================
// 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();


