// <!--
// $Header: y:\\cvsrepos/gs_web/makeHeader.js,v 1.2 2005/02/03 05:01:08 rowens Exp $
	function showmenu(menuname)
	{
		document.getElementById(menuname).style.visibility='visible';
	}
	function hidemenu(menuname)
	{
		document.getElementById(menuname).style.visibility='hidden';
	}

	var scriptures= new Array(
		new Array("&quot;For God so loved the world, that He gave His only begotten Son, that whoever believes in Him shall not perish, but have eternal life.&quot;", "&#151; John 3:16 (NIV)"),
		new Array("&quot;Go therefore and make disciples of all the nations, baptizing them in the name of the Father and the Son and the Holy Spirit&quot;", "&#151; Matthew 28:19 (NIV)"),
		new Array("&quot;We were therefore buried with him through baptism into death in order that, just as Christ was raised from the dead through the glory of the Father, we too may live a new life.&quot;", "&#151; Romans 6:4 (NIV)")
		);
	function initPage()
	{
		var d = new Date();
		var s = d.getSeconds();
		var count = 3;
		document.getElementById('id_script_text').innerHTML=scriptures[s%count][0];
		document.getElementById('id_script_ref').innerHTML=scriptures[s%count][1];
	}

// -->
