function createjsDOMenu() {

  /**** HomeMenuBar ****/

  mnuAbout = new jsDOMenu(140, "absolute");
  with (mnuAbout) {
    addMenuItem(new menuItem("Datasheet", "", "AceAudit_Datasheet.pdf"));
    addMenuItem(new menuItem("Demo", "", "demo.htm"));
    addMenuItem(new menuItem("Pricing", "", "pricing.htm"));
    addMenuItem(new menuItem("FAQ", "", "faq.htm"));
  }
  
  oMenuBar = new jsDOMenuBar("static", "HomeMenuBar");
  with (oMenuBar) {
    oItem = new menuBarItem("Home");
    oItem.itemName = "homeid";
    oItem.actionOnClick = "link:Index.htm";
    addMenuBarItem(oItem);
    items.homeid.showIcon("homeicon1","homeicon2","homeicon2");

    oItem = new menuBarItem("Login");
    oItem.actionOnClick = "link:http://www.aceaudit.com/SecuredForms/AuditFileUpload.aspx";
    addMenuBarItem(oItem);

    addMenuBarItem(new menuBarItem("About", mnuAbout));

    oItem = new menuBarItem("Services");
    oItem.actionOnClick = "link:Services.htm";
    addMenuBarItem(oItem);

    oItem = new menuBarItem("Partners");
    oItem.actionOnClick = "link:Partners.htm";
    addMenuBarItem(oItem);

    oItem = new menuBarItem("Resources");
    oItem.actionOnClick = "link:Resources.htm";
    addMenuBarItem(oItem);

    setActivateMode("over");
  }

}
