$(document).ready(function() {
    xOffset=10; yOffset=20;
    $(".tooltip").hover(function(e){
		this.t=this.title;
		this.title="";
		if( this.t.length > 0 ){
			$("body").append("<p id='tooltip'>"+ this.t +"</p>");
			$("#tooltip")
				.css("top",(e.pageY - xOffset) + "px")
				.css("left",(e.pageX + yOffset) + "px")
				.fadeIn("normal");
		}
    },function(){
			this.title = this.t;
			$("#tooltip").remove();
    });
if( this.title.length > 0 ){
    $(".tooltip").mousemove(function(e){
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px");
    });
}
});