this.tooltip = function() {     
 /* CONFIG */
  xOffset = -20; // vertical
  yOffset = 0;   // horizontal
 /* END CONFIG */
    
  $(".tooltip_container").hover(function(e) {
    this.t = this.title;
    this.title = "";    
    
    $("body").append("<div id='tooltip'>" + $(".tooltip", this).clone().html() + "</div>");
    $("#tooltip")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px")
        .fadeIn("fast");
  },
  function() {
    this.title = this.t; 
    $("#tooltip").remove();
  });
  
  $(".tooltip_container").mousemove(function(e){
    $("#tooltip")
        .css("top",(e.pageY - xOffset) + "px")
        .css("left",(e.pageX + yOffset) + "px");
  });
};
