function ini () {
    window.defaultStatus = "--= Meadow View Church of Christ =--"
}
ini ()

 <!-- begin script
                agent = navigator.userAgent;
                browserVer = 2;
                if (agent.substring(0,7) == "Mozilla")
                {
                        if (parseInt(agent.substring(8,9)) >= 3) {browserVer = 1;}
                }
               
                function menuToggle(inId, onOff) {
					if (onOff == '1')
					{	document.getElementById(inId).style.color='blue';	}
                }
                
function toggleDisp(nbr, onOff){
	var id = "Butn" + nbr;
	for(i=2; i<=5; i++) {
		id = "Butn" + i;
		id2 = "Nav" + i;
		if (i == nbr) {
		    NavLeft = document.getElementById(id2).offsetLeft;
		    document.getElementById(id).style.left = NavLeft;
		    NavTop = MenuBar.offsetHeight;
		    document.getElementById(id).style.top = NavTop;
			if(onOff == '1'){
				document.getElementById(id).style.display = 'block';
				BA_ToggleClr(id2, 1);
			} else {
				document.getElementById(id).style.display = 'none';
				BA_ToggleClr(id2, 0);
			}
		} else {
			document.getElementById(id).style.display = 'none';
		}
	}
}
function BA_ToggleClr(obj, onOffInd){
	if (onOffInd == '1') {
		document.getElementById(obj).style.backgroundColor = 'indigo';
	} else {
		document.getElementById(obj).style.backgroundColor = '66000C';
	}
}
