// JavaScript Document
function cambiaEstiloMenuSobre(elemento, capa){
	elemento.style.color ='#0038C6';
	document.getElementById(capa).style.background = '#FFCC66';
}
function cambiaEstiloMenuFuera(elemento, capa){
	elemento.style.color ='#82A7F1';
	document.getElementById(capa).style.background = '#FFFFFF';
}