this.tooltip = function(){
xOffset = 20;
yOffset = 30;		
 
$(".tooltip").hover(function(e){
this.t = this.title;
this.title = "";
//alert(this.t);
$("#tooltip").html(""+ this.t +"");
 
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
    },
 
function(){
this.title = this.t;
$("#tooltip").hide();
    });

};
 
$(document).ready(function(){
	tooltip();
});
