<!--
        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(); 
        
		                                
        b1on.src = "slike/meni/o_klubu1.gif"; b1off.src = "slike/meni/o_klubu.gif";
        b2on.src = "slike/meni/katalozi1.gif"; b2off.src = "slike/meni/katalozi.gif";      
        b3on.src = "slike/meni/vodic1.gif"; b3off.src = "slike/meni/vodic.gif";        
        b4on.src = "slike/meni/novosti1.gif"; b4off.src = "slike/meni/novosti.gif";      
        b5on.src = "slike/meni/linkovi1.gif"; b5off.src = "slike/meni/linkovi.gif";   
		b6on.src = "slike/meni/kontakt1.gif"; b6off.src = "slike/meni/kontakt.gif";         
        b7on.src = "slike/meni/home1.gif"; b7off.src = "slike/meni/home.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;
             }
        }

// --> 
