function ChangeScripture(){

	scriptureArray = new Array();

	scriptureCount = 0;

	

	// scripture array

	scriptureArray[scriptureCount++] = ["(John 17:17)", "Sanctify them by Your truth. Your word is truth."]

	// keep adding scriptures here...

	// scriptureArray[scriptureCount++] = ["()", ""]

	

	increment = Math.floor(Math.random() * scriptureCount);

	

	// write the scripture

	document.write('&quot;' + scriptureArray[increment][1] + '&quot;<br><br>' + scriptureArray[increment][0]);

}