  this.tooltip = function() {
    
    xOffset = 140;
    yOffset = -666;
    
    $("div.erweiterung img").hover(function(e){											  
      this.a = this.alt;
      this.alt = "";									  
      $("div.erweiterung a").append("<p id='tooltip'>"+ this.a +"</p>");
      $("#tooltip")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px")
        .fadeIn("def");		
      },
      function(){
      this.alt = this.a;		
      $("#tooltip").remove();
      }
    );	
    
    $("div.erweiterung img").mousemove(function(e){
      $("#tooltip")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px");
    });
    
  };

jQuery(document).ready(function(){
  
  tooltip();
   
});