function verse()
{

var maxverses = 15;

var choice = Math.floor(Math.random() * maxverses) + 1;

var verse = new Array(maxverses);
var reference = new Array(maxverses);

verse[1] = "In the beginning God created the heaven and the earth";
verse[2] = "Jesus Christ the same yesterday, and to day, and for ever";
verse[3] = "The Lord is my strength and song, and is become my salvation";
verse[4] = "We love Him, because He first loved us";
verse[5] = "But God, commendeth His love towards us...";
verse[6] = "The LORD is my shepherd; I shall not want";
verse[7] = "For God so loved the world, that He gave his only begotten Son...";
verse[8] = "For I know that my redeemer liveth...";
verse[9] = "Trust in the LORD with all thine heart...";
verse[10] = "For all have sinned, and come short of the glory of God";
verse[11] = "Believe on the Lord Jesus Christ, and thou shalt be saved";
verse[12] = "And whatsoever ye do, do it heartily, as to the Lord, and not unto men";
verse[13] = "I can do all things through Christ which strengtheneth me";
verse[14] = "In whom we have redemption through his blood...";
verse[15] = "Be still, and know that I am God";

reference[1] = "Genesis 1 v 1";
reference[2] = "Hebrews 13 v 8";
reference[3] = "Psalm 118 v 14";
reference[4] = "1 John 4 v 19";
reference[5] = "Romans 5 v 8";
reference[6] = "Psalm 23 v 1";
reference[7] = "John 3 v 16";
reference[8] = "Job 19 v 25";
reference[9] = "Proverbs 3 v5"; 
reference[10] = "Romans 3 v 23";
reference[11] = "Acts 16 v 31";
reference[12] = "Colossians 3 v 23";
reference[13] = "Philippians 4 v 13";
reference[14] = "Ephesians 1 v 7";
reference[15] = "Psalm 46 v 10";

document.write("<center class=\"script_text\">");

document.write(verse[choice]);

document.write("<br>");

document.write(reference[choice]);

}








