/***********************************************
* Random Verse script © Emmanuel Bible Camp
* This notice MUST stay intact for legal use
***********************************************/

//Specify the list of random verses in var form
//For each var,  make sure to add it to the var randomverse
var romans323 = "For all have sinned, and come short of the glory of God.<br><br> <b>Romans 3:23</b>"
var john316 = "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.<br><br> <b>John 3:16</b>"

var randomverse=[romans323, john316]
var randomnum = Math.floor(Math.random()*randomverse.length)

document.write('<h6>')
document.write(randomverse[randomnum])
document.write('<\/h6>')
