
$(document).ready(function(){$('.tooltip').mouseleave(function(){$(this).hide();});$('.help').mouseover(function(){var tooltip=$('.tooltip[name="'+$(this).attr('alt')+'"]:first');if(!tooltip.html()||tooltip.css('display')!='none')return false;var offset=$(this).offset();tooltip.show();tooltip.offset({'left':offset.left-3,'top':offset.top-4});});});
