<!--// © César Sánchez Novo 1998 webmaster@iddea.es

var boton = new Array (6)

programa = navigator.userAgent

if (programa.indexOf("MSIE/2") != -1) navegador = 1;
  else if (programa.indexOf("MSIE/3") != -1) navegador = 1;
  else if (programa.indexOf("MSIE/4") != -1) navegador = 3;
  else if (programa.indexOf("MSIE/5") != -1) navegador = 3;
  else if (programa.indexOf("Mozilla/2") != -1) navegador = 2;
  else if (programa.indexOf("Mozilla/3") != -1) navegador = 3;
  else if (programa.indexOf("Mozilla/4") != -1) navegador = 3;
  else navegador = 0;

if (navegador == 3) {
  boton[0] = new Image(145,40) ;
  boton[1] = new Image(145,40) ;
  boton[2] = new Image(145,40) ;
  boton[3] = new Image(145,40) ;
  boton[4] = new Image(145,40) ;
  boton[5] = new Image(145,40) ;
  boton[6] = new Image(145,40) ;
  

  boton[0].src="graficos/menu/menu0b.gif"  
  boton[1].src="graficos/menu/menu1b.gif"  
  boton[2].src="graficos/menu/menu2b.gif"  
  boton[3].src="graficos/menu/menu3b.gif"
  boton[4].src="graficos/menu/menu4b.gif"
  boton[5].src="graficos/menu/menu5b.gif"
  boton[6].src="graficos/menu/menu6b.gif"
 
  

}

function soltar(num) {
if(navegador == 3 ){
	if (num == 0 )	document.boton0.src="graficos/menu/menu0a.gif"  
	if (num == 1 )	document.boton1.src="graficos/menu/menu1a.gif"  
	if (num == 2 )	document.boton2.src="graficos/menu/menu2a.gif"  
	if (num == 3 )	document.boton3.src="graficos/menu/menu3a.gif"
	if (num == 4 )	document.boton4.src="graficos/menu/menu4a.gif"
	if (num == 5 )	document.boton5.src="graficos/menu/menu5a.gif"
	if (num == 6 )	document.boton6.src="graficos/menu/menu6a.gif"
	
  } 


}

function pulsar(num) { 
if(navegador == 3 ){

	if (num == 0 )	document.boton0.src=boton[0].src
	if (num == 1 )	document.boton1.src=boton[1].src
	if (num == 2 )	document.boton2.src=boton[2].src
	if (num == 3 )	document.boton3.src=boton[3].src
                if (num == 4 )	document.boton4.src=boton[4].src
                if (num == 5 )	document.boton5.src=boton[5].src
                if (num == 6 )	document.boton6.src=boton[6].src
        
	
}
}
//-->