function show(id){
    var menu = document.getElementById("mm" + id);
//	menu.style.backgroundColor = "#5599cc";
	menu.style.color = "#000000";
}

function unshow(id){
	var menu = document.getElementById("mm" + id);
	menu.style.color = "#ffffff";
}