// 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";
icnorteON = new Image(35,55);
icnorteON.src = "im/menu/icnorte1.jpg";
ofertasON = new Image(40,60);
ofertasON.src = "im/menu/ofertas1.jpg";
productosON = new Image(35,55);
productosON.src = "im/menu/productos1.jpg";
contactoON = new Image(35,55);
contactoON.src = "im/menu/contacto1.jpg";


inicioOFF = new Image(90,90);
inicioOFF.src = "im/menu/inicio.jpg";
icnorteOFF = new Image(95,95);
icnorteOFF.src = "im/menu/icnorte.jpg";
ofertasOFF = new Image(95,95);
ofertasOFF.src = "im/menu/ofertas.jpg";
productosOFF = new Image(95,95);
productosOFF.src = "im/menu/productos.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;
        }
}