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