  var menuMgr = new NlsMenuManager("mgr");
  menuMgr.defaultEffect="aoslide";
  menuMgr.flowOverFormElement=true;
  menuMgr.icPath="img/";

  var menuProd=menuMgr.createMenu("solution");
  menuProd.showIcon = true;
  menuProd.showSubIcon=false;
  menuProd.absWidth="145px";
  menuProd.addItem("1", "Enterprise Scheduling", "s_scheduling.html", ["smallarr.gif"], true, null, "menujs");
  menuProd.addItem("2", "Electronic Health Record", "s_emr.html", ["smallarr.gif"], true, null, "menuasp");
  menuProd.addItem("3", "Intelligent Billing", "s_billing.html", ["smallarr.gif"], true, null, "menujavadesk");
  menuProd.addItem("4", "Workflow Management", "s_wmanagement.html", ["smallarr.gif"], true, null, "menujavaweb");
  menuProd.addSeparator();
  menuProd.addItem("5", "Electronic Data Interchanger", "s_edinterchanger.html", ["smallarr.gif"], true, null, "others");
  menuProd.dropShadow("none");
  menuProd.addItem("6", "Technology", "s_technology.html", ["smallarr.gif"], true, null, "others");
  menuProd.dropShadow("none");

  var menuDownLd = menuMgr.createMenu("capabilities");
  menuDownLd.showIcon = true;
  menuDownLd.absWidth="170px";
  menuDownLd.addItem("1", "IT Strategy Development", "c_itsd.html", ["smallarr.gif"]);
  menuDownLd.addItem("2", "System Analysis and Design", "c_sad.html", ["smallarr.gif"]);
  menuDownLd.addItem("3", "Customize Software", "c_cs.html", ["smallarr.gif"]);
  menuDownLd.addSeparator();
  menuDownLd.dropShadow("none");
  
  var menuDownLd = menuMgr.createMenu("aboutus");
  menuDownLd.showIcon = true;
  menuDownLd.absWidth="170px";
  menuDownLd.addItem("1", "About Us", "aboutus.html", ["smallarr.gif"]);
  menuDownLd.addItem("2", "CEO Message", "ceo.html", ["smallarr.gif"]);
  menuDownLd.addItem("3", "Mission Statement", "mission.html", ["smallarr.gif"]);
  menuDownLd.addSeparator();
  menuDownLd.dropShadow("none");
  
  var menuBar = menuMgr.createMenubar("menubar");
  menuBar.stlprf="horz_";
  menuBar.orient = "H";
  menuBar.showIcon = true;
  menuBar.showSubIcon = false;
  menuBar.stretchItem=false;
  menuBar.absWidth="575px";
  menuBar.addItem("1", "Home", "index.html", null, true, null, "home");
  menuBar.addSeparator();
  menuBar.addItem("2", "Solutions", "", null, true, null, "solution");
  menuBar.addSeparator();
  menuBar.addItem("3", "Capabilities", "", null, true, null, "capabilities");
  menuBar.addSeparator();
  menuBar.addItem("4", "About Us", "aboutus.html",null,true, null, "aboutus");
  menuBar.dropShadow("none");

  function changeEffect(o) {
    menuMgr.defaultEffect=o.value;
    menuMgr.hideMenus();
    var it;
    for (it in menuMgr.menus) {
      if (o.value=="") {
        menuMgr.menus[it].effect=null;
      } else {
        menuMgr.menus[it].useEffect(menuMgr.defaultEffect);
      }
    }
  }
