function init() {
	var menuID = ["m8"];
	for (var i in menuID)
	document.getElementById("s-" + menuID[i]).style.display = "none";
  }
function mostra(id) {
	if (document.getElementById("s-"+id).style.display == "none") {
		init();
		document.getElementById("s-"+id).style.display = "block";
	}
	else init()
}
window.onload = function(e) { init() } 
