<!-- Hide the script from old browsers --
window.onerror=null;
var netscape = 0;
var goodIE = 0;

browserName = navigator.appName.substring(0,8);
browserVer = parseFloat(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3)
{ netscape = 1; }
if (browserName == "Microsof" && browserVer >= 3.01)
{ goodIE = 1; }

if ( netscape || goodIE )
{

x1_on =      new Image(); x1_on.src      = "img/menu/foretaget_on.gif";
x1_off =      new Image(); x1_off.src      = "img/menu/foretaget.gif";
x2_on =      new Image(); x2_on.src      = "img/menu/tjanster_on.gif";
x2_off =      new Image(); x2_off.src      = "img/menu/tjanster.gif";
x3_on =      new Image(); x3_on.src      = "img/menu/resurser_on.gif";
x3_off =      new Image(); x3_off.src      = "img/menu/resurser.gif";
x4_on =      new Image(); x4_on.src      = "img/menu/referenser_on.gif";
x4_off =      new Image(); x4_off.src      = "img/menu/referenser.gif";
x5_on =      new Image(); x5_on.src      = "img/menu/nyheter_on.gif";
x5_off =      new Image(); x5_off.src      = "img/menu/nyheter.gif";
x6_on =      new Image(); x6_on.src      = "img/menu/kontakt_on.gif";
x6_off =      new Image(); x6_off.src      = "img/menu/kontakt.gif";


}

function img_act(imgName)
{
     if (netscape || goodIE)
     {
          document[imgName].src = eval(imgName + "_on.src");
     }
}

function img_inact(imgName)
{
      if (netscape || goodIE)
     {
          document[imgName].src = eval(imgName + "_off.src");
     }
}

//-->