// JavaScript Document
function visible(capa) {
                document.getElementById(capa).style.display = 'block';
}
function invisible(capa) {
                document.getElementById(capa).style.display = 'none';
}

function resetear (){
		document.getElementById('img1').src='img/menu_superior/1a.gif';
		document.getElementById('img2').src='img/menu_superior/2a.gif';
		document.getElementById('img3').src='img/menu_superior/3a.gif';
		document.getElementById('img4').src='img/menu_superior/4a.gif';
}
	

function pulsada(capa){
	resetear(); 
	if (capa=='01'){
		document.getElementById('img1').src='img/menu_superior/1c.gif';
	}
	if (capa=='02'){
		document.getElementById('img2').src='img/menu_superior/2c.gif';
	}
	if (capa=='03'){
		document.getElementById('img3').src='img/menu_superior/3c.gif';
	}
	if (capa=='04'){
		document.getElementById('img4').src='img/menu_superior/4c.gif';
	}
	
}


function mostrar(capa) {
	
	document.getElementById(capa).style.display = 'block';
	
}

function ocultar(capa) {
	document.getElementById(capa).style.display = 'none';
	
}

