<!--
// ==============================================
// 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] = "\"If you can't feed a hundred people, then just feed one.\"";
Quotation[1] = "\"If you wish to experience peace, provide peace for another.\"";
Quotation[2] = "\"You give but little when you give of your possessions. It is when you give of yourself that you truly give.\"";
Quotation[3] = "\"If you have much, give of your wealth; If you have little, give of your heart.\"";
Quotation[4] = "\"The value of a man resides in what he gives and not in what he is capable of receiving.\"";
Quotation[5] = "\"Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back by becoming more.\"";
Quotation[6] = "\"It's important to give it all you have while you have the chance.\"";
Quotation[7] = "\"You get the best out of others when you give the best of yourself.\"";
Quotation[8] = "\"Real generosity toward the future lies in giving all to the present.\"";

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


