$(document).ready( function() {
    $('.help').hide();
    $('.help_button').click( function() {
        var id = $(this).attr('id');
        var help  = $( '#' + id.replace( /_button$/, '' ) );
        if ( help.is(':visible') ) {
            help.dialog('close');
        }
        else {
            $('.help').each( function() { if ( $(this).is(':visible') ) $(this).dialog('close'); } );
            var title = help.attr('title');
            if ( title ) {
                help.dialog( { 'title': title } );
            }
            else {
                help.dialog();
            }
        }
        return false;
    } );
    $('.help_button').css( { 'cursor':'pointer' } );
});

