this.toptips=function(){var bodywidth=$(window).width();$(".toptips").hover(function(e){var image=$(this).attr("rel");$("body").append("<div id='tip'><img src='"+image+"' /></div>");var imgwidth=$("#tip").width();xOffset=10;if((bodywidth-e.pageX)<(bodywidth/2)){yOffset=-30-imgwidth;}else{yOffset=30;}
$("#tip").css("top",(e.pageY-xOffset)+"px").css("left",(e.pageX+yOffset)+"px").fadeIn("fast");},function(){$("#tip").remove();});$(".toptips").mousemove(function(e){$("#tip").css("top",(e.pageY-xOffset)+"px").css("left",(e.pageX+yOffset)+"px");});};
