function loadHelpPage(){
    // Create help tab
    var tab = new Tab();
    tab.init();
    $('#content').append(tab.object());
    
    // Add help content
    var helpForm = $('
');
    helpForm.append(
        '' + 
            'Quick Start ' +
            '' +
            '' +
                '1. Discover hardware 2. Verify defined nodes 3. Install compute nodes 4. Provision nodes 5. Monitor Cluster  ' +
        ' ' +
        '' +
            'Advanced ' + 
            '' +
            '' + 
                'a. Edit the xCAT database tables b. Update the xCAT RPM on the Management Node  ' + 
        ' ');
    tab.add('helpTab', 'Help', helpForm, false);
}