
	function mostrarMenu(item) {
		item.style.backgroundColor='#37b55a';
		item.getElementsByTagName('ul')[0].style.display='block';
	}

	function ocultarMenu(item) {
		item.style.backgroundColor='transparent';
		item.getElementsByTagName('ul')[0].style.display='none';
	}

	function cambiarIdioma(idioma) {
		if (idioma == "es") {
			window.location = window.location.pathname.replace(/\/[a-z]{2}\//, "/") + '?idioma=' + idioma;
		} else {
			window.location = window.location.pathname.replace(/(\/[a-z]{2}\/)|(\/).+\.php.*/, "/" + idioma + "/") + '?idioma=' + idioma;
		}
	}

	function mouseOverIdioma(img, idioma) {
		img.src = "images/" + idioma + ".png";
	}

	function mouseOutIdioma(img, idioma) {
		img.src = "images/" + idioma + "BN.png";
	}


