buttonGrossShowTooltip=function(e){var a=jQuery(this).next('.button_gross-tooltip-text');if(a.attr('class')!='button_gross-tooltip-text')return false;a.fadeIn().css('top',e.layerY).css('left',e.layerX+40);return false};buttonGrossHideTooltip=function(e){var a=jQuery(this).next('.button_gross-tooltip-text');if(a.attr('class')!='button_gross-tooltip-text')return false;a.fadeOut()};jQuery(document).ready(function(){var f=jQuery('<div id="jqueryTooltip"></div>');jQuery('body').append(f);jQuery("#glossar a").hover(function(e){var a=jQuery(this);var b=jQuery(jQuery(this).attr("href")).html();a.attr('title','');a.data('titleText',b);f.html(b);var c=e.pageY+20;var d=e.pageX+20;f.css({'top':c,'left':d});f.show(0)},function(){});jQuery('.button_gross').each(function(){var a=jQuery(this).attr('title');if(a!=undefined&&a!=""){jQuery(this).after(jQuery('<span/>').attr('class','button_gross-tooltip-text').html(jQuery(this).attr('title'))).attr('title','')}}).hover(buttonGrossShowTooltip,buttonGrossHideTooltip)});
