// JavaScript Document
function mostrar_ocultar(aux){
	div = document.getElementById(aux);
	padre = document.getElementById('padre_'+aux);
	a = document.getElementById('link_'+aux);
	if (div.style.display == 'none'){
		div.style.display = "";
		padre.style.backgroundColor = "#FEE6D3";
		padre.style.backgroundImage = "url(images/flecha_2.png)";
		a.style.color = "#FE8A35"; 
		
	}else{
		div.style.display='none';
		padre.style.backgroundColor = "#A0AFBA";
		padre.style.backgroundImage = "url(images/flecha_1.png)";
		a.style.color = "#2E3946"; 
	}		
}
