
// ==============================================
// 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] = "I thank God for you whenever I think of you. I always have joy as I pray for all of you. Phil 1:3-4 (NLV)";
Quotation[1] = "'For I know the plans I have for you', says the Lord. 'They are plans for good and not for disaster, to give you a future and a hope.'  Jeremiah 29:11 (NLT)";
Quotation[2] = "May the Lord bless you and protect you.";
Quotation[3] = "May the Lord smile on you and be gracious to you.";
Quotation[4] = "May the Lord show you his favor and give you his peace.' Numbers 6:24-26";
Quotation[5] = "This is my command-be strong and courageous! Do not be afraid or discouraged. For the Lord your God is with you wherever you go. Joshua 1:9";
// ======================================
// 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();

