/* 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 = 12;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Proverbs 17:22";
body="&ldquo;A cheerful heart is good medicine.&rdquo;";
}

if (quotes==1) {
title="Ecclesiasticus 6:16";
body="&ldquo;A faithful friend is the medicine of life.&rdquo;";
}

if (quotes==2) {
title="1 Corinthians 13:13";
body="&ldquo;And now these three remain: faith, hope and love. But the greatest of these is love.&rdquo;";
}

if (quotes==3) {
title="Deuteronomy";
body="&ldquo;Be strong and of a good courage, fear not, nor be afraid...for the Lord thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee.&rdquo;";
}

if (quotes==4) {
title="II Corinthians 9:7";
body="&ldquo;Every man according as he purposeth in his heart, so let him give; not grudgingly, or of necessity: for God loveth a cheerful giver.&rdquo;";
}

if (quotes==5) {
title="Isaiah 53:4-5";
body="&ldquo;Forsake not an old friend; for the new is not comparable to him: a new friend is as new wine; when it is old, thou shalt drink it with pleasure.&rdquo;";
}

if (quotes==6) {
title="I John 4:16";
body="&ldquo;God is love; and he that dwelleth in love dwelleth in God, and God in him.&rdquo;";
}

if (quotes==7) {
title="Psalms 46:1";
body="&ldquo;God is our refuge and strength, a very present help in trouble.&rdquo;";
}

if (quotes==8) {
title="Job 32:9";
body="&ldquo;Great men are not always wise.&rdquo;";
}

if (quotes==9) {
title="2 Timothy 4:7";
body="&ldquo;I have fought the good fight, I have finished the race, I have kept the faith.&rdquo;";
}

if (quotes==10) {
title="Acts 20:35";
body="&ldquo;It is more blessed to give than to receive.&rdquo;";
}

if (quotes==11) {
title="Ezekiel 25:17";
body="&ldquo;The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children.&rdquo;";
}


document.write(''+ body +'<br><br>');
document.write('<strong>' + title + '</strong>');

