ShowTooltip = function(e) { var text = $j(this).next('.show-tooltip-text'); if (text.attr('class') != 'show-tooltip-text') return false; text.fadeIn() .css('top', e.pageY) .css('left', e.pageX-350); return false; } HideTooltip = function(e) { var text = $j(this).next('.show-tooltip-text'); if (text.attr('class') != 'show-tooltip-text') return false; text.fadeOut(); } SetupTooltips = function() { $j('#hotel-oferta-2 .show-tooltip') .each(function(){ $j(this) .after($j('') .attr('class', 'show-tooltip-text') .html($j(this).attr('title'))) .attr('title', ''); }) .hover(ShowTooltip, HideTooltip); } SetupPriceTooltips = function() { $j('#booking-children .show-tooltip') .each(function(){ $j(this) .after($j('') .attr('class', 'show-tooltip-text') .html($j(this).attr('title'))) .attr('title', ''); }) .hover(ShowTooltip, HideTooltip); } $j(document).ready(function() { SetupTooltips(); SetupPriceTooltips(); });