// Catarinense Spa
// Acídio Alan
// Produzido por A2C - Internet para Negócios
// www.a2c.com.br

function OpenMural() {
	var box = document.getElementById("mural");
	var linke = document.getElementById("mural");
	
	if(box.style.display == "none" || box.style.display == "") {
		box.style.display = "block";
		window.location = "#dep-anchor";
	} else {
		box.style.display = "none";
	}
}