document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.        
  2.        
  3.     function showTooltip(x, y, contents)
  4.     {
  5.         $(\'<div id="tooltip">\' + contents + \'</div>\').css( {
  6.             position: \'absolute\',
  7.             display: \'none\',
  8.             top: y-8 ,
  9.             left: x - 8,
  10.             border: \'1px solid #fdd\',
  11.             padding: \'15px\',
  12.             \'background-color\': \'#fee\',
  13.             opacity: 0.80
  14.         }).appendTo("body");
  15.         setTimeout("$(\'#tooltip\').fadeIn(100)",1000);
  16.     }
');