function menuMouseIn(objid){
	document.getElementById(objid).style.fontFamily = "Arial";
	document.getElementById(objid).style.color ="FFFFFF" ;
	document.getElementById(objid).style.fontSize="11px";
	document.getElementById(objid).style.fontWeight="bold" ;
	document.getElementById(objid).style.backgroundColor="#005A84" ;
}
function menuMouseOut(objid){
	document.getElementById(objid).style.fontFamily = "Arial";
	document.getElementById(objid).style.color="#5D5D5D" ;
	document.getElementById(objid).style.fontSize="11px";
	document.getElementById(objid).style.fontWeight="bold" ;
	document.getElementById(objid).style.backgroundColor="#FFFFFF" ;
}
function menuNavigate(toURL){
	window.location=toURL ;
}