diff --git a/xCAT-UI/js/guide/guide.js b/xCAT-UI/js/guide/guide.js
new file mode 100644
index 000000000..a6c7ccf3d
--- /dev/null
+++ b/xCAT-UI/js/guide/guide.js
@@ -0,0 +1,16 @@
+function loadGuidePage(){
+ //create guide tab
+ var tab = new Tab();
+ tab.init();
+ $('#content').append(tab.object());
+
+ //add the help content
+ var helpForm = $('
');
+ helpForm.append('' +
+ '');
+ tab.add('monitorTab', 'Guide', helpForm, false);
+}
\ No newline at end of file