			var buttonDefs 			= Array();			buttonDefs['normal'] 	= Array();			buttonDefs['normal']['current'] 		= 'images/homeOver.gif';			buttonDefs['normal']['normal'] 			= 'images/home.gif';						buttonDefs['normal']['roll'] 				= 'images/homeOver.gif';							buttonDefs['aboutUs'] 	= Array();			buttonDefs['aboutUs']['current'] 		= 'images/aboutOurChurchOn.gif';			buttonDefs['aboutUs']['normal'] 		= 'images/aboutOurChurch.gif';						buttonDefs['aboutUs']['roll'] 			= 'images/aboutOurChurchOver.gif';													buttonDefs['worship'] 	= Array();			buttonDefs['worship']['current'] 		= 'images/worshipServicesOn.gif';			buttonDefs['worship']['normal'] 		= 'images/worshipServices.gif';						buttonDefs['worship']['roll'] 			= 'images/worshipServicesOver.gif';							buttonDefs['ourCongre'] 	= Array();			buttonDefs['ourCongre']['current'] 	= 'images/ourCongregationOn.gif';			buttonDefs['ourCongre']['normal'] 	= 'images/ourCongregation.gif';						buttonDefs['ourCongre']['roll'] 		= 'images/ourCongregationOver.gif';								buttonDefs['contactUs'] 	= Array();			buttonDefs['contactUs']['current'] 	= 'images/contactUsOn.gif';			buttonDefs['contactUs']['normal'] 	= 'images/contactUs.gif';						buttonDefs['contactUs']['roll'] 		= 'images/contactUsOver.gif';					//			setTimeout("SetCurrent()",500);									function Rollover(id)			{				if(g_pageType == id)				{					return;				}								var myImage = document.getElementById(id);				myImage.src = buttonDefs[id]['roll'];//				alert("rollover");			}			function Rollout(id)			{				if(g_pageType == id)				{					return;				}								var myImage = document.getElementById(id);				myImage.src = buttonDefs[id]['normal'];				//				alert("rollout");			}						function SetCurrent()			{				var myImage = document.getElementById(g_pageType);				myImage.src = buttonDefs[g_pageType]['current'];		//				alert("rollout");			}						function GotoPage(url)			{				if(g_hash)				{					openPage(url);					return false;				}				else				{					return true;				}			}			