function showMenu(id) {
	for(i=1;i<=4;i++) {
		document.getElementById("narutolist"+i).style.display="none";
	}
	document.getElementById("narutolist"+id).style.display="";
}
