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  Discover all hardware in the cluster. Define them in the xCAT database. Initialize your cluster. ' +
            	'2. Verify defined nodes  View nodes definition by groups in a table or graphical style. ' +
            	'3. Install compute nodes  Copy useful files from DVD onto harddisk. Create Linux images. Install compute nodes in stateful, stateless, and statelite style. ' +
            	'4. Provision nodes  Create stateful, stateless, or statelite virtual machines. Install an operating system on a physical machine. ' +
            	'5. Monitor Cluster  Monitor your xCAT cluster using one or more third party monitoring software such as Ganglia, RMC, etc.  ' +
            ' ' +
        ' ' +
    	'' +
    		'Advanced ' + 
    		'' +
    		'' + 
    			'a. Edit the xCAT database tables  ' + 
    			'b. Update the xCAT RPM on the Management Node  ' + 
    		' ' + 
    	' ');
    tab.add('helpTab', 'Help', helpForm, false);
}