/*navHover = function() {
	var lis = document.getElementById("navmenu-idioma-h").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);*/

var esta=false;
var cbelgica=false;
var csuiza=false;

function quitarBelgica() {
	document.getElementById("belgica").className = "quitar";
	document.getElementById("suiza").className = "quitar";
}

function mostrarBelgica() {
	document.getElementById("belgica").className = "belgica";
	cbelgica = true;
}
function mostrarSuiza() {
	document.getElementById("suiza").className = "suiza";
	csuiza = true;
}


function paso2(capa) {
	if(document.getElementById(capa).style.display=="block" && esta==true && cbelgica==false && csuiza==false) {
		document.getElementById(capa).style.display="none";
	}
}
function paso(capa) {
	document.getElementById("1").style.display="none";
	document.getElementById("2").style.display="none";
	document.getElementById("3").style.display="none";
	
	esta=true;
	document.getElementById(capa).style.display="block";
	
}
function limpiar() {
	document.getElementById("1").style.display="none";
	document.getElementById("2").style.display="none";
	document.getElementById("3").style.display="none";
}




