function menu_cascata(estado,div){
	if (estado == "abre"){document.getElementById(div).style.display='block';}
	else if (estado == "fecha"){document.getElementById(div).style.display='none';}
}

function teste(estado,div){
	if (estado == "abre"){alert("jaheh");}

}