function loadManualPage(){
// Create monitor tab
var tab = new Tab();
tab.init();
$('#content').append(tab.object());
//add the help content
var helpForm = $('
');
helpForm.append('Quick Start ' +
'1. Discover hardwares Discover all hardwares in the cluster. Define them into xCAT database. Initialize your cluster fast and easily. It is in the Discover tab. ' +
'2. Verify defined nodes See nodes definition by groups in table style and graphical layout style. ' +
'3. Install compute nodes Copy useful files from DVD into harddisk. Create Linux image. Install compute nodesin stateful, stateless and statelite style. It\'s all here. ' +
'4. Monitor Cluster Allows you to plug-in one or more third party monitoring software such as Ganglia, RMC etc. to monitor the xCAT cluster. ' +
'Advanced a. Edit the xCAT database tables directly b. Update the xCAT RPM on Management node automatically ');
tab.add('monitorTab', 'Guide', helpForm, false);
}