jQuery(document).ready(function(){

    $(document).mousemove(function(e){
        $('#atrtitle').css({
            top:e.pageY+15,
            left:e.pageX+15
            });
    });

    $('#categories a[title]').mouseover(function(e){
        $(this).after('<div id="atrtitle"></div>');
        var ttext = $(this).attr("title");
        $(this).attr({
            title:""
        });
        $('#atrtitle').text(ttext).show().fadeTo(800,0.8);
    });

    $('#categories  a[title]').mouseout(function(e){
        $(this).attr({
            title:$('#atrtitle').text()
            });
        $('#atrtitle').hide().remove();
    });

});

