$(document).ready(function(){
  
  Cufon.replace('.alle');
  
  $('#panel').tooltip({ 
    delay: 0, 
    showURL: false,  
    opacity: 1, 
    bodyHandler: function() { 
      return $("<img src='img/panel.jpg' />"); 
    } 
  });

  $("#menu .button").mouseover(function(){
    $(this).children("a").addClass('active');
    $("#content").css('margin-top', 395);
    var x = $(this).position();
    $(this).children("div").show();
  });
  
    $("#menu .button").mouseout(function(){
      $(this).children("a").removeClass('active');
    $("#content").css('margin-top', 396);
      $(this).children("div").hide();
    });
  
  $("#menu .button div a").mouseover(function(){
    $(this).css('width', $("#menu .button div"));
  });
  
  $("#menu .button div").hide();

});
