//$('<div id="livetip"></div>').hide().appendTo('body');
$('#livetip').hide();
var tipTitle = '';
$('.social').bind('mouseover', function(event) {
 var $link = $(event.target).closest('a');
 if ($link.length) {
   var link = $link[0];
   tipTitle = link.title;
   link.title = '';
   $('#livetip')
   .css({
     top: event.pageY + 12,
     left: event.pageX + 12
   })
   .html('<div>' + tipTitle + '</div>')
   .show();
 }
}).bind('mouseout', function(event) {
 var $link = $(event.target).closest('a');
 if ($link.length) {
   $link.attr('title', tipTitle);
   $('#livetip').hide();
 }
}).bind('mousemove', function(event) {
 if ($(event.target).closest('a').length) {
   $('#livetip').css({
     top: event.pageY + 12,
     left: event.pageX + 12
   });
 }
});

