(function($){$.fn.simpleTooltip=function(options){var opts=$.extend({},$.fn.simpleTooltip.defaults,options);return this.each(function(){var el=$(this);el.data('title',el.attr('title')).removeAttr('title');el.hover(function(e){$('body').append('<div id="tooltip"><p>'+el.data('title')+'</p></div>');$('#tooltip').css({top:(e.pageY-opts.xOffset)+'px',left:(e.pageX+opts.yOffset)+'px',opacity:opts.opacity});},function(){$('#tooltip').remove();});el.mousemove(function(e){$('#tooltip').css({top:(e.pageY-opts.xOffset)+'px',left:(e.pageX+opts.yOffset)+'px'});});});}
$.fn.simpleTooltip.defaults={title:null,xOffset:10,yOffset:20,opacity:.8}})(jQuery);