(function($){$.fn.tooltip=function(options){var defaults={offsetY:-25,offsetX:10,fadeSpeed:200,color:'black',background:'#e3e3e3',fontSize:'1em',fontFamily:'inherit',fontWeight:'normal',padding:'2px 5px',border:'1px solid black',rounded:'0px'},settings=$.extend({},defaults,options);this.each(function(){var $this=$(this)
var title=this.title;if($this.attr('title')!=''){this.title='';$this.bind({mouseover:function(e){tpClass="tooltip_"+Math.floor(Math.random()*100000);$('<p class="'+tpClass+'"></p>').prependTo('body').text(title).hide().css({position:'absolute',top:e.pageY+settings.offsetY,left:e.pageX+settings.offsetX,color:settings.color,backgroundColor:settings.background,fontSize:settings.fontSize,fontFamily:settings.fontFamily,fontWeight:settings.fontWeight,padding:settings.padding,border:settings.border,WebkitBorderRadius:settings.rounded,MozBorderRadius:settings.rounded,BorderRadius:settings.rounded,}).stop().fadeIn(settings.fadeSpeed);},mouseout:function(){$('.'+tpClass).stop().fadeOut(settings.fadeSpeed,function(){$(this).remove();});}});$this.mousemove(function(e){$('.'+tpClass).css({top:e.pageY+settings.offsetY,left:e.pageX+settings.offsetX});});}});return this;}})(jQuery);
