$(document).ready(function() {
    /*$('a.help').click(function() {
        $('.help-popup:visible').fadeOut('fast');
	    if ($(this).parent(':first').children('span.help-popup:hidden').html() != '') {
            $(this).parent(':first').children('span.help-popup:hidden').fadeIn('fast');
        }
        return false;
    });
    
    $(document).click(function() {
        $('.help-popup:visible').fadeOut('fast');
    });*/
    
    $('a.hover-help, a.help').hover(function() {
        if ($(this).parent(':first').children('span.help-popup:hidden').html() != '') {
            $(this).parent(':first').children('span.help-popup:hidden').fadeIn('fast');
        }
        return false;
    }, function() {
        $('.help-popup:visible').fadeOut('fast');
    });
    
    $('a.hover-help, a.help').click(function() {
        return false;
    });
});

