// JavaScript Document


function fiparty(id)
{
 var img = id + '_img';
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  document.getElementById(img).src = 'http://www.mister-aero.com/img-style/ebene2.gif';
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  document.getElementById(img).src = 'http://www.mister-aero.com/img-style/ebene.gif';
 }
}

window.onload = function()
{
//Ding initialisieren, nur hoehe
myHeight = new fx.Height("d2", {duration: 300});

//Alle Dinger auf unsichtbar setzen.
myHeight.hide();
}