this.tooltip=function(){xOffset=15;yOffset=20;$("a.tooltip").hover(function(a){this.t=this.title;this.title="";$("body").append("<p id='tooltip'>"+this.t+"</p>");$("#tooltip").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px").fadeIn("slow")},function(){this.title=this.t;$("#tooltip").remove()});$("a.tooltip").mousemove(function(a){$("#tooltip").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px")})};$(document).ready(function(){tooltip()});this.imagePreview=function(){xOffset=10;yOffset=30;$("a.preview").hover(function(a){this.t=this.title;this.title="";var b=(this.t!="")?"<br/>"+this.t:"";$("body").append("<p id='preview'><img src='"+this.href+"' alt='Image preview' />"+b+"</p>");$("#preview").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px").fadeIn("slow")},function(){this.title=this.t;$("#preview").remove()});$("a.preview").mousemove(function(a){$("#preview").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px")})};$(document).ready(function(){imagePreview()});this.screenshotPreview=function(){xOffset=10;yOffset=30;$("a.screenshot").hover(function(a){this.t=this.title;this.title="";var b=(this.t!="")?"<br/>"+this.t:"";$("body").append("<p id='screenshot'><img src='"+this.rel+"' alt='url preview' />"+b+"</p>");$("#screenshot").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px").fadeIn("fast")},function(){this.title=this.t;$("#screenshot").remove()});$("a.screenshot").mousemove(function(a){$("#screenshot").css("top",(a.pageY-xOffset)+"px").css("left",(a.pageX+yOffset)+"px")})};$(document).ready(function(){screenshotPreview()});
