function ddMenu(menuId){
	if(document.getElementById){
		var menuStyle = document.getElementById(menuId).style;		
		if (menuStyle.display == "block"){
			menuStyle.display = "none";
		}else{
			menuStyle.display = "block";
		}		
		return false;
	}else{
		return true;
	
	}
}

function toggleMenu(menuId){
	if(document.getElementById){
		var menuStyle = document.getElementById(menuId).style;		
		if (menuStyle.display == "block"){
			menuStyle.display = "none";
		}else{
			menuStyle.display = "block";
		}		
		return false;
	}else{
		return true;
	
	}
}