<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3) version = "n3";
else version = "n2";

if (browserVer >= 4) version = "n3";

if (version == "n3") {

        
b1on = new Image(); b1off = new Image();
b2on = new Image(); b2off = new Image();
b3on = new Image(); b3off = new Image();
b4on = new Image(); b4off = new Image();
b5on = new Image(); b5off = new Image();
b6on = new Image(); b6off = new Image();
b7on = new Image(); b7off = new Image();
b8on = new Image(); b8off = new Image();

b1on.src = "/ing/o_nama-1.gif";                 b1off.src = "/ing/o_nama.gif";
b2on.src = "/ing/ove_nedelje-1.gif";            b2off.src = "/ing/ove_nedelje.gif";
b3on.src = "/ing/usluge-1.gif";                 b3off.src = "/ing/usluge.gif";
b4on.src = "/ing/predlazemo_predlazete-1.gif";  b4off.src = "/ing/predlazemo_predlazete.gif";
b5on.src = "/ing/e-knjizara-1.gif";             b5off.src = "/ing/e-knjizara.gif";
b6on.src = "/ing/e-katalog-1.gif";              b6off.src = "/ing/e-katalog.gif";
b7on.src = "/ing/vodic-1.gif";                  b7off.src = "/ing/vodic.gif";
b8on.src = "/ing/linkovi-1.gif";                b8off.src = "/ing/linkovi.gif";

}

function img_act(imgName) {
     if (version == "n3") {
     imgOn = eval(imgName + "on.src");
     document [imgName].src = imgOn;
     }
}

function img_inact(imgName) {
     if (version == "n3") {
     imgOff = eval(imgName + "off.src");
     document [imgName].src = imgOff;
     }
}
//-->