
// Zentriert Größe der Seite / y-397     385

window.addEvent("domready", function() {

//  $("content").setStyle("height", this.getSize().y-370);
//  this.addEvent("resize", function() {
//    $("content").setStyle("height", this.getSize().y-370);
//  });

// Logos unten

  $("hotel").addEvent("mouseenter", function() {
    this.src = 'site/img/logos/schlafgut_logo.gif';
  });
  
  $("hotel").addEvent("mouseleave", function() {
    this.src = 'site/img/schlafgut-text.gif';
  });

  $("werkhof").addEvent("mouseenter", function() {
    this.src = 'site/img/logos/werkhof_logo.gif';
  });
  
  $("werkhof").addEvent("mouseleave", function() {
    this.src = 'site/img/werkhof-text.gif';
  });
    
  
});
