browserName = navigator.appName;
     browserVer = parseInt(navigator.appVersion);
             if (browserName == "Netscape", "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
             else version = "n2";
             
             if (version == "n3") {
             s1on = new Image();
             s1on.src = "images/s-profile-on.gif";
             s2on = new Image();
             s2on.src = "images/s-collection-on.gif";
             s3on = new Image();
             s3on.src = "images/s-fabric-on.gif";
             s4on = new Image();
             s4on.src = "images/s-collar-on.gif";
             s5on = new Image();
             s5on.src = "images/s-journey-on.gif";             
             s6on = new Image();
             s6on.src = "images/s-contact-on.gif";
      
             
             s1off = new Image();
             s1off.src = "images/s-profile-off.gif";
             s2off = new Image();
             s2off.src = "images/s-collection-off.gif";
             s3off = new Image();
             s3off.src = "images/s-fabric-off.gif";
             s4off = new Image();
             s4off.src = "images/s-collar-off.gif";
             s5off = new Image();
             s5off.src = "images/s-journey-off.gif";             
             s6off = new Image();
             s6off.src = "images/s-contact-off.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;
             }
     }