function mostrar(id){
	var elemento = document.getElementById(id);
	if(elemento){
		if (elemento.style.display == "block")
			elemento.style.display = "none";
		else
			elemento.style.display = "block";
	}	
}



function marcar(objeto){	
	if(objeto){
		// Guardo el valor del enlace, para luego identificarlo, mediante una cookie
		setCookie("opcion_menu",objeto.href);
	}
}

function marcar_menu(){
	var menu = document.getElementById("menu-navegacion");
	var valor = getCookie("opcion_menu");	
	var enlaces = menu.getElementsByTagName("a");
	
	for(var i= 0; i < enlaces.length; i++){
		if(enlaces[i].href==valor){
			enlaces[i].className = "selected";
		}
	}
}