(function($){$.fn.preview=function(a){var b={xOffset:0,yOffset:0,id:'preview'};var a=$.extend(b,a);return this.each(function(){$(this).hover(function(e){this.t=this.title;this.title="";var c=(this.t!="")?"<br/>"+this.t:"";$("body").append("<p id='"+a.id+"'><img src='"+this.href+"' alt='Image Preview' />"+c+"</p>");$('#'+a.id).css("top",(e.pageY-a.yOffset)+"px").css("left",(e.pageX+a.xOffset)+"px").fadeIn("fast")},function(){this.title=this.t;$('#'+a.id).remove()});$(this).mousemove(function(e){$('#'+a.id).css("top",(e.pageY-a.yOffset)+"px").css("left",(e.pageX+a.xOffset)+"px")})})}})(jQuery);
