var ThemaAlt="";
function load_images1(dateiname)
{
  Img1            = new Array(3)
  Img1["an"]      = new Image()
  Img1["an"].src  = dateiname + "_an.gif"
  Img1["aus"]     = new Image()
  Img1["aus"].src = dateiname + "_aus.gif"
  Img1["ist"]     = new Image()
  Img1["ist"].src = dateiname + "_ist.gif"
}


// Bild zeigen
function hin(name)
{
  if(name != ThemaAlt){ document[name+"A"].src = Img1["an"].src; 
                        document[name+"B"].src = Img1["an"].src;
                        return true;}
}

// Bild verstecken
function weg(name)
{ if(name != ThemaAlt){ document[name+"A"].src = Img1["aus"].src;
                        document[name+"B"].src = Img1["aus"].src;
                        return true;}
}
//Bei Themenwechsel
function wechsel(name)
{
  document[name+"A"].src = Img1["ist"].src;
  document[name+"B"].src = Img1["ist"].src;
  if(ThemaAlt != "" && name != ThemaAlt){  
                                         document[ThemaAlt+"A"].src = Img1["aus"].src;
                                         document[ThemaAlt+"B"].src = Img1["aus"].src;
                                         }
  ThemaAlt = name;
  return true;
}

load_images1("../bilder/pf")