// JavaScript Document

function capa_oculta(capa){
	if (document.getElementById(capa).style.display=='inline') {
		document.getElementById(capa).style.display='none';
	}
	else {
		document.getElementById(capa).style.display='inline';
	}
}

function quitar_fondo_item(capa){
	document.getElementById(capa).style.backgroundColor='';
}

function poner_fondo_item(capa){
	document.getElementById(capa).style.backgroundColor='#2D5A93';
}
