var button11 = new Image();
button11.src = "images/nav/willkommen_out.gif";
var button21 = new Image();
button21.src = "images/nav/deflammoff_out.gif";
var button31 = new Image();
button31.src = "images/nav/funktion_out.gif";
var button41 = new Image();
button41.src = "images/nav/vorteile_out.gif";
var button51 = new Image();
button51.src = "images/nav/links_out.gif";
var button61 = new Image();
button61.src = "images/nav/presse_out.gif";
var button71 = new Image();
button71.src = "images/nav/kontakt_out.gif";

var button12 = new Image();
button12.src = "images/nav/willkommen_act.gif";
var button22 = new Image();
button22.src = "images/nav/deflammoff_act.gif";
var button32 = new Image();
button32.src = "images/nav/funktion_act.gif";
var button42 = new Image();
button42.src = "images/nav/vorteile_act.gif";
var button52 = new Image();
button52.src = "images/nav/links_act.gif";
var button62 = new Image();
button62.src = "images/nav/presse_act.gif";
var button72 = new Image();
button72.src = "images/nav/kontakt_act.gif";

var navstat = 1;

function changeimg(x,name)
{ 
  if (x == navstat)
  {
    return;
  }
  else
  {
    window.document.images[x].src = name.src;
  }
}

function showpage(x,URL1,URL2,name)
{
  navstat = x;
  parent.frames[2].location.href = URL1;
  parent.frames[3].location.href = URL2;
  
  initnav();
  window.document.images[x].src = name.src;
}

function initnav()
{
  window.document.images[1].src = button11.src;
  window.document.images[2].src = button21.src;
  window.document.images[3].src = button31.src;
  window.document.images[4].src = button41.src;
  window.document.images[5].src = button51.src;
  window.document.images[6].src = button61.src;
  window.document.images[7].src = button71.src;
   
}