// Elemento del menú que está activo por defecto
	var activo = 1;
	// Número de elementos del menú	
	var ntotal = 4;
	
	function cambia(id){
		for (m=1;m<=ntotal;m++){
			if(m == id){
				document.getElementById("d"+id).src = '/img/productos/det'+id+'_on.gif';
				MM_displayLayers('det'+id,'','block');
				activo = id;
			}
			else{
				document.getElementById("d"+m).src = '/img/productos/det'+m+'_off.gif';	
				MM_displayLayers('det'+m,'','none');
			}
		}
	}
	
	
	function enciende(id){
		if(id != activo){
			document.getElementById("d"+id).src = '/img/productos/det'+id+'_on.gif';	
		}
	}
	
	function apaga(id){
		if(id != activo){
			document.getElementById("d"+id).src = '/img/productos/det'+id+'_off.gif';
		}
	}
	
	function cambiaIMG(id){
		if(document.embeds["imagen"]){
			document.embeds["imagen"].SetVariable('caso',2);
			document.embeds["imagen"].SetVariable('idProd',id);
			document.embeds["imagen"].Play(); 
		}
		else{
			document.getElementById("imagen").SetVariable('caso',2);
			document.getElementById("imagen").SetVariable('idProd',id);
			document.getElementById("imagen").Play();
		}		
	}
