<!--//--><![CDATA[//><!--
		function mouseOver(elementID) {
			//document.getElementById(elementID).style.color='#B7C9D3';
			//document.getElementByID(elementID).style.fontWeight='bold';
			//if (document.getElementByID(elementID).style.textDecoration)
			//	document.getElementByID(elementID).style.textDecoration='underline';
		}
 		function mouseOut(elementID) {
			//document.getElementById(elementID).style.color='#FFFFFF';
			//document.getElementByID(elementID).style.fontWeight='normal';
			//if (document.getElementByID(elementID).style.textDecoration)
			//	document.getElementByID(elementID).style.textDecoration='none';
		}
			function subMouseOver(elementID) {
			//document.getElementById(elementID).style.color='#7D9EAF';
			//document.getElementByID(elementID).style.fontWeight='bold';
			//if (document.getElementByID(elementID).style.textDecoration)
			//	document.getElementByID(elementID).style.textDecoration='underline';
		}
		function subMouseOut(elementID) {
			//document.getElementById(elementID).style.color='#646464';
			//document.getElementByID(elementID).style.fontWeight='normal';
			//if (document.getElementByID(elementID).style.textDecoration)
			//	document.getElementByID(elementID).style.textDecoration='none';
		}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

function submit_reg_form(xform){
	var err_title = "The required information is incomplete: \n\n";
	var err_msg = "";
	
	if(document.regForm.firstname.value=="") err_msg+= "* Please Enter your First Name \n";
	if(document.regForm.lastname.value=="") err_msg+= "* Please Enter your Last Name \n";
	if(document.regForm.dayphone.value=="") err_msg+= "* Please Enter your Day Phone \n";
	if(document.regForm.eveningphone.value=="") err_msg+= "* Please Enter your Evening Phone \n";
	if(document.regForm.email.value=="") err_msg+= "* Please Enter your Email \n";
	
	if(err_msg>''){
		alert(err_title+err_msg);
	}else{
		xform.submit(this.form);
	}
}

//--><!]]>