<!-- 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/topmenu/sponsorer_on.gif";
x1_off =      new Image(); x1_off.src      = "../img/topmenu/sponsorer.gif";
x2_on =      new Image(); x2_on.src      = "../img/topmenu/press_on.gif";
x2_off =      new Image(); x2_off.src      = "../img/topmenu/press.gif";
x3_on =      new Image(); x3_on.src      = "../img/topmenu/shop_on.gif";
x3_off =      new Image(); x3_off.src      = "../img/topmenu/shop.gif";
x4_on =      new Image(); x4_on.src      = "../img/menu/arn_cecilia_on.gif";
x4_off =      new Image(); x4_off.src      = "../img/menu/arn_cecilia.gif";
x5_on =      new Image(); x5_on.src      = "../img/menu/arnfilmen_on.gif";
x5_off =      new Image(); x5_off.src      = "../img/menu/arnfilmen.gif";
x6_on =      new Image(); x6_on.src      = "../img/menu/res_i_arn_on.gif";
x6_off =      new Image(); x6_off.src      = "../img/menu/res_i_arn.gif";
x7_on =      new Image(); x7_on.src      = "../img/menu/turistinfo_on.gif";
x7_off =      new Image(); x7_off.src      = "../img/menu/turistinfo.gif";
x8_on =      new Image(); x8_on.src      = "../img/menu/kontakt_on.gif";
x8_off =      new Image(); x8_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");
     }
}

//-->