/* 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="John 3:16";
body="For God so loved the world that he gave his one and only Son,[a] that whoever believes in him shall not perish but have eternal life.";
}

if (quotes==1) {
title="Luke 16:10";
body="Whoever can be trusted with very little can also be trusted with much, and whoever is dishonest with very little will also be dishonest with much.";
}

if (quotes==2) {
title="Proverbs 19:21";
body="Many are the plans in a man's heart,but it is the LORD's purpose that prevails.";
}

if (quotes==3) {
title="Psalms 33:11";
body="But the plans of the LORD stand firm forever, the purposes of his heart through all generations.";
}

if (quotes==4) {
title="Isaiah 26:3";
body="You will keep in perfect peace him whose mind is steadfast, because he trusts in you.";
}

if (quotes==5) {
title="Romans 8:26";
body="In the same way, the Spirit helps us in our weakness. We do not know what we ought to pray for, but the Spirit himself intercedes for us with groans that words cannot express.";
}

if (quotes==6) {
title="Acts 13:36";
body="For when David had served God's purpose in his own generation, he fell asleep; he was buried with his fathers and his body decayed";
}

if (quotes==7) {
title="John 2:5-7";
body="His mother said to the servants, Do whatever he tells you. Nearby stood six stone water jars, the kind used by the Jews for ceremonial washing, each holding from twenty to thirty gallons. Jesus said to the servants, Fill the jars with water; so they filled them to the brim";
}

if (quotes==8) {
title="John 16:33";
body="I have told you these things, so that in me you may have peace. In this world you will have trouble. But take heart! I have overcome the world.";
}

if (quotes==9) {
title="Colossians 4:5";
body="Be wise in the way you act toward outsiders; make the most of every opportunity.";
}

if (quotes==10) {
title="1 Thessolonians 2:8";
body="We loved you so much that we were delighted to share with you not only the gospel of God but our lives as well, because you had become so dear to us.";
}

if (quotes==11) {
title="2 Timothy 1:7";
body="For God did not give us a spirit of timidity, but a spirit of power, of love and of self-discipline.";
}

/* Sample for next
if (quotes==12) {
title="Verse ";
body="Text";
}
*/


document.write('<div align=center>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');
