function startmenu(){
	document.getElementById('menu1').style.display = "none";
}

function menufunc(menuId){
	if(document.getElementById(menuId).style.display == "none"){
		document.getElementById(menuId).style.display = "block";
	} else {
		startmenu();
	}
}

window.addEvent( load_method, startmenu );