function getrandom(arraylength)	{
			
				var randnum = Math.random()
				randnum = randnum * arraylength
				randnum = Math.floor(randnum)
				return randnum
			
}
			
function writeverse()	{
			
				var bibleverse = new Array(0)
				var biblesource = new Array(0)
				var indexnum
				
				bibleverse.push("The Lord is my rock, and my fortress, and my deliverer; my God, my strength, in whom I will trust; my buckler, and the horn of my salvation, and my high tower.")
				biblesource.push("Psalms 18:2")
				
				bibleverse.push("Giving thanks always for all things unto God and the Father in the name of our Lord Jesus Christ.")
				biblesource.push("Ephesians 5:20")
				
				bibleverse.push("Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven.")
				biblesource.push("Matthew 5:16")
				
				bibleverse.push("The Lord is my light and my salvation; whom shall I fear? the Lord is the strength of my life; of whom shall I be afraid?")
				biblesource.push("Psalms 27:1")
				
				bibleverse.push("No man can serve two masters: for either he will hate the one, and love the other; or else he will hold to the one, and despise the other. Ye cannot serve God and mammon.")
				biblesource.push("Matthew 6:24")
				
				indexnum = getrandom(bibleverse.length)
				
				document.write("<span class='bodystyle'>")
				document.write(bibleverse[indexnum] + "<br>")
				document.write("<br>--" + biblesource[indexnum])
				document.write("</span></p>")
				
				
}
			

			