/* This file may be copyrighted. It has been obfuscated for brevity, not for secrecy. Check http://www.jungepartner.de/tooltip.js?clear */var tooltip=Class.create({initialize:function(b,c){this.parent=b;this.tooltip=c;if(this.tooltip){var a=this;b.observe("mouseout",function(d){a.mouseout(d)});b.observe("mousemove",function(d){a.mousemove(d)})}},mouseout:function(a){this.tooltip.hide()},mousemove:function(b){var a,c;if(typeof b.layerX=="undefined"){a=b.x-$("main").offsetLeft;if(a-this.parent.offsetLeft<5){this.tooltip.hide();return}}else{a=b.layerX+this.parent.offsetLeft}if(typeof b.layerY=="undefined"){c=b.y-$("main").offsetTop;if(c-this.parent.offsetTop<5){this.tooltip.hide();return}}else{c=b.layerY+this.parent.offsetTop}this.tooltip.show();this.tooltip.style.left=(a+5)+"px";this.tooltip.style.top=(c+5)+"px"}});
