// JavaScript Document

function desplegar(nombreCapa){
//		alert ('desplegar: '+nombreCapa+'visible');
		document.getElementById(nombreCapa+'visible').className='oculto';
		document.getElementById(nombreCapa+'oculto').className="visible";
}

function plegar(nombreCapa){
//		alert ('plegar: '+nombreCapa+'oculto');
		document.getElementById(nombreCapa+'visible').className="visible";
		document.getElementById(nombreCapa+'oculto').className='oculto';
}

// ILUMINAR V
function iluminarV(IdCapa){
	if(IdCapa >11 && IdCapa<17){
	}else{
		capa1='MenuV'+IdCapa;
		document.getElementById(capa1).className='producteselect nivell2';	
	}
}

// APAGAR V
function apagarV(IdCapa){
	if(IdCapa >11 && IdCapa<17){
	}else{
		capa1='MenuV'+IdCapa;
		document.getElementById(capa1).className='producte nivell2';
	}
}
// ILUMINAR
function iluminar(IdCapa){
	if(IdCapa >11 && IdCapa<17){
	}else{
		capa1='MenuH'+IdCapa;
		capaImg='imgMenuH'+IdCapa;
		document.getElementById(capa1).className='imatgeMenu sensible';
		document.getElementById(capaImg).className='transparentSel';
	}
}

// APAGAR
function apagar(IdCapa){
	if(IdCapa >11 && IdCapa<17){
	}else{
		capa1='MenuH'+IdCapa;
		capaImg='imgMenuH'+IdCapa;
		document.getElementById(capa1).className='imatgeMenu';
		document.getElementById(capaImg).className='transparent';
	}
}

// MOSTRAR CAPA
function mostrar(nombreCapa){
	document.getElementById(nombreCapa).style.display="block";	
}

// OCULTAR CAPA
function ocultar(nombreCapa){
	document.getElementById(nombreCapa).style.display="none";
}

// INTERRUPTOR CAPA
function interruptor(nombreCapa){
		if(document.getElementById(nombreCapa).style.display=="block"){
			document.getElementById(nombreCapa).style.display="none";
		}else{
			document.getElementById(nombreCapa).style.display="block"
		}
}

// INTERRUPTOR CAPA 2
function interruptor2(nombreCapa){
		if(document.getElementById(nombreCapa+'visible').style.display=="block"){
			document.getElementById(nombreCapa+'visible').style.display="none";
			document.getElementById(nombreCapa+'oculto').style.display="block";
		}else{
			document.getElementById(nombreCapa+'visible').style.display="block";
			document.getElementById(nombreCapa+'oculto').style.display="none";
		}
}

// DESPLEGABLE CAPA
function desplegable(nombreCapa){
	if(document.getElementById(nombreCapa).className=="visible"){
			document.getElementById(nombreCapa).className='oculto';
//			document.getElementById(nombreCapa).style.display="none";
			document.getElementById('ImgUp'+nombreCapa).src="img/down-on.gif";
	}else{
		document.getElementById(nombreCapa).className='visible';
//		document.getElementById(nombreCapa).style.display="block"
		document.getElementById('ImgUp'+nombreCapa).src="img/up-on.gif";
	}
}
