// JavaScript Document

function ocultar() {
	document.getElementById('menuApplications').style.visibility= 'hidden';
	document.getElementById('menuProgramme').style.visibility= 'hidden';
	/*document.getElementById('menuApplications').style.visibility= 'hidden';*/
}
function mostrar(nombreCapa){
	ocultar();
	document.getElementById(nombreCapa).style.visibility= 'visible';
}

function Sobre(id) {
	
	document.getElementById(id).style.backgroundColor = '#ffffff';
		
}

function Fuera(id) {
	
	document.getElementById(id).style.backgroundColor = '#c7d3db';
		
}
