
// flyover menus ----------------------------------------------------------------------
function overMenu(td_id,sub_id) {
	//document.body.style.cursor='hand';
	document.getElementById(td_id).style.background='#3b86bb';
	document.getElementById(sub_id).style.color='#ffffff';
}

function outMenu(td_id,sub_id) {
	//document.body.style.cursor='default';
	document.getElementById(td_id).style.background='#DEE1EA';
	document.getElementById(sub_id).style.color='#3b86bb';
}

function hideMenu(menu_id) {
	document.getElementById(menu_id).style.visibility="hidden";
}

function showMenu(menu_id) {
	document.getElementById(menu_id).style.visibility="visible";
}

