/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Psalms 118:17";
body="I shall not die, but live, and declare the works of the Lord";
}

if (quotes==1) {
title="Psalms 103:2-3";
body="Bless the Lord, O my soul, and forget not all his benefits: Who forgives your iniquities, Who heals all your diseases...";
}

if (quotes==2) {
title="Deuteronomy 7:15";
body="And the Lord will take away from you all sickness, and will afflict you with none of the terrible diseases of Egypt...";
}

if (quotes==3) {
title="Jeremiah 1:12";
body="Then the Lord said to me, 'You have seen well, for I am ready to perform My word'.";
}

if (quotes==4) {
title="Galatians 3:13-14";
body="Christ has redeemed us from the curse of the law, having become a curse for us, that the blessing of Abraham might come upon the Gentiles in Christ Jesus, that we might receive the promise of the Spirit through faith.";
}

if (quotes==5) {
title="Isaiah 53:4-5";
body="Surely He has borne our griefs And carried our sorrows; Yet we esteemed Him stricken, Smitten by God, and afflicted. But He was wounded for our transgressions, He was bruised for our iniquities; The chastisement for our peace was upon Him, And by His stripes we are healed.";
}

document.write('<div class="theQuote">');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');
