function ChangeScripture(){
	scriptureArray = new Array();
	scriptureCount = 0;
	
	// scripture array
	scriptureArray[scriptureCount++] = ["(Zech. 4:6)", "Not by might nor by power, but by My Spirit, Says the LORD of hosts."]
	scriptureArray[scriptureCount++] = ["(John 17:17)", "Sanctify them by Your truth. Your word is truth."]
	scriptureArray[scriptureCount++] = ["(Psalm 37:4)", "Delight yourself also in the LORD, And He shall give you the desires of your heart."]
	scriptureArray[scriptureCount++] = ["(Psalm 37:5)", "Commit your way to the LORD, Trust also in Him, And He shall bring it to pass."]
	scriptureArray[scriptureCount++] = ["(Psalm 37:23)", "The steps of a good man are ordered by the LORD, And He delights in his way."]
	scriptureArray[scriptureCount++] = ["(Psalm 37:34)", "Wait on the LORD, And keep His way, And He shall exalt you to inherit the land; When the wicked are cut off, you shall see it."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:3)", "Great is the LORD, and greatly to be praised; And His greatness is unsearchable."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:8)", "The LORD is gracious and full of compassion, Slow to anger and great in mercy."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:9)", "The LORD is good to all, And His tender mercies are over all His works."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:10)", "All Your works shall praise You, O LORD, And Your saints shall bless You."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:17)", "The LORD is righteous in all His ways, Gracious in all His works."]
	scriptureArray[scriptureCount++] = ["(Psalm 145:18)", "The LORD is near to all who call upon Him, To all who call upon Him in truth."]
	scriptureArray[scriptureCount++] = ["(Proverbs 16:1)", "The preparations of the heart belong to man, But the answer of the tongue is from the LORD."]
	scriptureArray[scriptureCount++] = ["(Proverbs 16:3)", "Commit your works to the LORD, And your thoughts will be established."]
	scriptureArray[scriptureCount++] = ["(Proverbs 16:9)", "A man's heart plans his way, But the LORD directs his steps."]
	// keep adding scriptures here...
	// scriptureArray[scriptureCount++] = ["()", ""]
	
	increment = Math.floor(Math.random() * scriptureCount);
	
	// write the scripture
	scripture = '&quot;' + scriptureArray[increment][1] + '&quot;<br><br>' + scriptureArray[increment][0];
	if (document.getElementById("scripture")) {
		document.getElementById("scripture").innerHTML = scripture;
	}
	else {
		document.write('<span id="scripture">' + scripture + '</span>');
	}
	
	// change scripture periodically
	if (document.getElementById) {
		setTimeout("ChangeScripture()", 30000);
	}
}
