<!-- 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/top/foretaget_on.gif";
x1_off =      new Image(); x1_off.src      = "img/top/foretaget_ny.gif";
x2_on =      new Image(); x2_on.src      = "img/top/personal_on.gif";
x2_off =      new Image(); x2_off.src      = "img/top/personal.gif";
x3_on =      new Image(); x3_on.src      = "img/top/leverantorer_on.gif";
x3_off =      new Image(); x3_off.src      = "img/top/leverantorer.gif";
x4_on =      new Image(); x4_on.src      = "img/top/kontakt_on.gif";
x4_off =      new Image(); x4_off.src      = "img/top/kontakt.gif";
x5_on =      new Image(); x5_on.src      = "img/top/kampanjer_on.gif";
x5_off =      new Image(); x5_off.src      = "img/top/kampanjer.gif";
x6_on =      new Image(); x6_on.src      = "img/top/nyheter_on.gif";
x6_off =      new Image(); x6_off.src      = "img/top/nyheter.gif";
x7_on =      new Image(); x7_on.src      = "img/top/filarkiv_on.gif";
x7_off =      new Image(); x7_off.src      = "img/top/filarkiv.gif";
x8_on =      new Image(); x8_on.src      = "img/top/login_on.gif";
x8_off =      new Image(); x8_off.src      = "img/top/login.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");
     }
}

//-->