/*
BBN 4 Jesus Radio
Random Website Quote Generator

This program saves an entire list of quotes to be randomly displayed wherever this code is placed.
Created on May 1, 2010
*/

var quote = new Array ();
quote[0] = "The one who has Christ has everything.  The one who has everything except for Christ really has nothing.  And the one who has Christ plus everything else does not have any more than the one who has Christ alone. --Augustine";
quote[1] = "Our Lamb has conquered; let us follow Him --Moravian Seal";
quote[2] = "While women weep, as they do now, I'll fight; while children go hungry, as they do now I'll fight; while men go to prison, in and out, in and out, as they do now, I'll fight; while there is a drunkard left, while there is a poor lost girl upon the streets, while there remains one dark soul without the light of God, I'll fight - I'll fight to the very end! --William Booth";
quote[3] = "Work as if everything depended upon your work, and pray as if everything depended upon your prayer. --William Booth";
quote[4] = "Do not have your concert first, and then tune your instrument afterwards. Begin the day with the Word of God and prayer, and get first of all into harmony with Him.  –-James Hudson Taylor";
var n = quote.length; //Finds the total number of quotes
var i = Math.floor(n*Math.random())

document.write('<font color="#000000" size="2" face="Bookman Old Style, Palatino Linotype, Papyrus, Perpetua, Perpetua Titling MT">'+quote[i]+'</font>');//Add html between parantheses to get the appearance correct
