// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

Quotation[0] = '"Simplicity is indeed often the sign of truth and a criterion of beauty."<BR>- Mahlon Hoagland';
Quotation[1] = '"It is the sweet, simple things of life which are the real ones after all."<BR>-Laura Ingalls Wilder';
Quotation[2] = '"Simplicity, clarity, singleness: these are the attributes that give our lives power and vividness and joy."<BR>- Richard Halloway';
Quotation[3] = '"To find the universal elements enough; to find the air and the water exhilarating; to be refreshed by a morning walk or an evening saunter... to be thrilled by the stars at night; to be elated over a birds nest or wildflower in spring - these are some of the rewards of the simple life."<BR> - John Burroughs';
Quotation[4] = '"If you cant feed a hundred people, then just feed one."<BR>- Mother Teresa';
Quotation[5] = '"The way you get meaning into your life is to devote yourself to loving others, devote yourself to your community around you, and devote yourself to creating something that gives you purpose and meaning."<BR> - Mitch Albom';
Quotation[6] = '"Do all the good you can,<BR>By all the means you can,<BR>In all the ways you can,<BR>In all the places you can,<BR>At all the times you can,<BR>To all the people you can,<BR>As long as you ever can."<BR>- John Wesley';

// ======================================
// 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]);}











