function createjsDOMenu() {
  mnuSolutions = new jsDOMenu(140, "absolute");
  with (mnuSolutions) {
    addMenuItem(new menuItem("AceAudit.com", "", "http://www.aceaudit.com"));
    addMenuItem(new menuItem("AceMapper", "", "../acemapper.html"));
    addMenuItem(new menuItem("DACTools", "", "../DacTools/DacTools.html"));
    addMenuItem(new menuItem("IntelliPart", "", "http://www.intellipart.com"));
    addMenuItem(new menuItem("PiesCentral", "", "../piescentral.html"));
  }
  
  oMenuBar = new jsDOMenuBar("static", "MainMenuBar");
  with (oMenuBar) {
    oItem = new menuBarItem("Home");
    oItem.itemName = "homeid";
    oItem.actionOnClick = "link:../Index.html";
    addMenuBarItem(oItem);
    items.homeid.showIcon("homeicon1","homeicon2","homeicon2");

    addMenuBarItem(new menuBarItem("Solutions", mnuSolutions));

    oItem = new menuBarItem("Services");
    oItem.actionOnClick = "link:../Services.html";
    addMenuBarItem(oItem);

    oItem = new menuBarItem("Support");
    oItem.actionOnClick = "link:../Support.html";
    addMenuBarItem(oItem);

    oItem = new menuBarItem("Partners");
    oItem.actionOnClick = "link:../Partners.html";
    addMenuBarItem(oItem);

    oItem = new menuBarItem("Resources");
    oItem.actionOnClick = "link:../Resources.html";
    addMenuBarItem(oItem);

    setActivateMode("over");
  }	
}
