// ==============================================
// 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] = "The King believed Goliath was too big to fight; David believed Goliath was too big to miss.";
Quotation[1] = "\"Freedom isn't given; it is won.\" --A.Philip Randolph";
Quotation[2] = "\"Kind words can be short and easy to speak, but their echoes are truly endless.\" --Mother Teresa ";
Quotation[3] = "It would be wonderful if we could forget our troubles as quickly as we forget our blessings.";
Quotation[4] = "\"Trust the past to God's mercy, trust the present to God's love and the future to God's providence.\" --St. Augustine ";
Quotation[5] = "Making a living is important, but making a life is even more important.";
Quotation[6] = "\"God does not comfort us to make us comfortable, but to make us comforters.\" --John Henry Jowett ";
Quotation[7] = "\"A compliment is verbal sunshine.\" -- Robert Orben ";
Quotation[8] = "\"The duty of every Christian is to be Christ to his neighbor.\" --Martin Luther ";
Quotation[9] = "When you flee from temptation, make sure you don't leave a forwarding address.";
Quotation[10] = "If you live like there is no God -- you'd better be right!";


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