$(function(){
    $(".this_tooltip").hover(function(e){
        title = $(this).attr('title');
        $("body").append('<div class="tooltip">' + title + '</div>');
        $('.tooltip').css({
            top : e.pageY - 25,
            left : e.pageX + 15
        }).fadeIn();
        $(this).attr('title', '');
    }, function(){
        $('.tooltip').remove();
        $(this).attr('title', title);
    }).mousemove(function(e){
        $('.tooltip').css({
            top : e.pageY - 25,
            left : e.pageX + 15
        })
    })

});
