function showMenu(li,menuId){
	
	li.className = 'current';
	if(menuId!=''){
		document.getElementById(menuId).style.display = '';
	}
}

function dispMenu(li,menuId){
	if(li.getAttribute("nam")!='sel'){
		li.className = '';
	}
	if(menuId!=''){
		document.getElementById(menuId).style.display = 'none';
	}
}
