function merken() {
  merkeY = ( isIE ? document.body.scrollTop  : pageYOffset );
  setTimeout( "merken()", 50 );
}

function ausblenden() {
  if( merkeY != ( isIE ? document.body.scrollTop  : pageYOffset ) ) {
    setTimeout( "einblenden()", 1000 );
  } else {
    setTimeout( "ausblenden()", 5 );
  }
}

function einblenden() {
  if( merkeY == ( isIE ? document.body.scrollTop  : pageYOffset ) ) {
    rausfahren();
    reinfahren();
  }
  setTimeout( "ausblenden()", 10 );
}

function reinfahren() {
  if( links < 13 ) {
    links += 10;
    statisch.left = links;
    setTimeout( "reinfahren()", 5 );
  }
}

function rausfahren() {
  if( links > -400 ) {
    links -= 25;
    statisch.left = links;
    setTimeout( "rausfahren()", 3 );
  } else {
    statisch.top =  96 + ( isIE ? document.body.scrollTop  : pageYOffset );
    statisch.visibility = "visible";
  }
}

function init() {
  if( !document.all ) {
    document.all = document;
    isIE = false;
  }
  if( !document.all.navigation.style ) document.all.navigation.style = document.all.navigation;
  statisch = document.all.navigation.style;

  merken();
  einblenden();
}

var merkeY = 0;
var isIE = true;
var links = 13;
