// JavaScript Document
browserName = navigator.appName;
browserVer = parseInt ( navigator.appVersion );
version = "n2";

if ( browserName == "Netscape" && browserVer >= 3 ) version = "n3";
if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) version = "e4";
if ( version == "n3" || version == "e4" )
{

inicioON = new Image(30,50);
inicioON.src = "im/menu/inicio1.jpg";
laempresaON = new Image(35,55);
laempresaON.src = "im/menu/laempresa1.jpg";
librosON = new Image(40,60);
librosON.src = "im/menu/libros1.jpg";
organigramaON = new Image(40,60);
organigramaON.src = "im/menu/organigrama1.jpg";
productosON = new Image(30,50);
productosON.src = "im/menu/productos1.jpg";
ofertasON = new Image(35,55);
ofertasON.src = "im/menu/ofertas1.jpg";
contactoON = new Image(35,55);
contactoON.src = "im/menu/contacto1.jpg";

inicioOFF = new Image(90,90);
inicioOFF.src = "im/menu/inicio.jpg";
laempresaOFF = new Image(95,95);
laempresaOFF.src = "im/menu/laempresa.jpg";
organigramaOFF = new Image(95,95);
organigramaOFF.src = "im/menu/organigrama.jpg";
productosOFF = new Image(95,95);
productosOFF.src = "im/menu/productos.jpg";
ofertasOFF = new Image(95,95);
ofertasOFF.src = "im/menu/ofertas.jpg";
contactoOFF = new Image(95,95);
contactoOFF.src = "im/menu/contacto.jpg";

}


function b_On ( imgName )
{
        if ( version == "n3" || version == "e4" )
        {
                activeButOn = eval ( imgName + "ON.src" );
                document [imgName].src = activeButOn;
        }
}

function b_Off ( imgName )
{
        if ( version == "n3" || version == "e4" )
        {
                inactiveButOff = eval ( imgName + "OFF.src" );
                document [imgName].src = inactiveButOff;
        }
}
