(function ($) { 
	  $.fn.eujTool = function() { 
		return this.each(function () { 
			var titel = this.title;
			var tool = '.eujtool';
			var $link = $(this);		
			$(this).hover(function() { 
				$('body').append('<div class="eujtool">'+titel+'</div>');
				$link.attr({ title: '' });
				$(tool).stop().animate({opacity: '+=0'}, 700, function() { 
					$(this).show();
				});
			}, function() { 
				$link.attr({ title: titel });
				$('body').find(tool).remove();
			}).mousemove(function(e) { 
				$(tool).css({ 
					top: (e.pageY-20)+'px',
					left: (e.pageX+20)+'px'
				});
			});
		});
	  };
	})(jQuery);
