$(document).ready(function()
{

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

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

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


});


