  var menuMgr = new NlsMenuManager("mgr");
  menuMgr.defaultEffect="aoslide";
  menuMgr.flowOverFormElement=true;
  menuMgr.icPath="images/";

  var menuServ=menuMgr.createMenu("services");
  menuServ.showIcon = true;
  menuServ.absWidth="160px";
  menuServ.addItem("1", "Six Pillars of Life", "six-pillars-of-life.html", ["smallarr.gif"], true, null, "", "Six Pillars of Life");
  menuServ.addItem("2", "Wealth Management Systems", "wealth-management-systems.html", ["smallarr.gif"], true, null, "", "Wealth Management Systems");
  
  // menuServ.getItemById("2").target="_blank";

  var menuProf=menuMgr.createMenu("profile");
  menuProf.showIcon = true;
  menuProf.absWidth="130px";
  // menuProf.addItem("1", "What Makes Us Special", "what-makes-us-special.html", ["smallarr.gif"], true, null, "", "What Makes Us Special");
  menuProf.addItem("1", "Our Team", "our-team.html", ["smallarr.gif"], true, null, "", "Our Team");
  menuProf.addItem("2", "Our Office", "our-office.html", ["smallarr.gif"], true, null, "", "Our Office");
  menuProf.addItem("3", "Client Events", "", ["smallarr.gif"], true, null, "events");
  // menuProf.addItem("5", "Professional Resources", "professional-resources.html", ["smallarr.gif"], true, null, "", "Professional Resources");

  var menuEvent=menuMgr.createMenu("events");
  menuEvent.showIcon = true;
  menuEvent.addItem("1", "Schedule of Events", "schedule-of-events.html", ["smallarr.gif"], true, null, "", "Schedule of Events");
  menuEvent.addItem("2", "Past Events", "past-events.html", ["smallarr.gif"], true, null, "", "Past Events");

  var menuLit=menuMgr.createMenu("literature");
  menuLit.showIcon = true;
  menuLit.addItem("1", "Articles and Audio", "articles-audio.html", ["smallarr.gif"], true, null, "", "Articles and Audio");
  menuLit.addItem("2", "Widow's Wealth Map", "http://www.amazon.com/Widows-Wealth-Map-Steps-Beginning/dp/0971444315/ref=sr_1_2?ie=UTF8&s=books&qid=1204905632&sr=8-2", ["smallarr.gif"], true, null, "", "Widow's Wealth Map");
  menuLit.addItem("3", "Weekly Commentary", "weekly-commentary.html", ["smallarr.gif"], true, null, "", "Weekly Commentary");
  menuLit.addItem("4", "eBrochure", "ebrochure.html", ["smallarr.gif"], true, null, "", "eBrochure");
  // menuLit.addItem("5", "Articles", "", ["smallarr.gif"], true, null, "articles");
  
  menuLit.getItemById("2").target="_blank";
  
  // var menuArticles=menuMgr.createMenu("articles");
  // menuArticles.showIcon = true;
  // menuArticles.addItem("1", "6 Lessons For Investing in the Future", "6-lessons-for-investing.html", ["smallarr.gif"]);
  // menuArticles.addItem("2", "Trying to Stay Safe", "trying-to-stay-safe.html", ["smallarr.gif"]);
  // menuArticles.addItem("3", "Diversifications", "diversifications.html", ["smallarr.gif"]);
  // menuArticles.dropShadow("none");

  var menuPress=menuMgr.createMenu("press");
  menuPress.showIcon = true;
  menuPress.addItem("1", "Cornerstone News", "cornerstone-news.html", ["smallarr.gif"], true, null, "", "Cornerstone News");
  menuPress.addItem("2", "In The News", "in-the-news.html", ["smallarr.gif"], true, null, "", "In The News");
  menuPress.addItem("3", "Online Media Kit", "online-media-kit.html", ["smallarr.gif"], true, null, "", "Online Media Kit");
  menuPress.addItem("4", "Contact Us", "contact-us-press.html", ["smallarr.gif"], true, null, "", "Contact Us: Press");

  var menuContact=menuMgr.createMenu("contact");
  menuContact.showIcon = true;
  menuContact.addItem("1", "Contact Us", "contact-us.html", ["smallarr.gif"], true, null, "", "Contact Us");
  menuContact.addItem("2", "Tell A Friend", "tell-a-friend.html", ["smallarr.gif"], true, null, "", "Tell A Friend");
  menuContact.addItem("3", "Request Information", "request-info.html", ["smallarr.gif"], true, null, "", "Request Information");
  
  
  var menuBar = menuMgr.createMenubar("menubar");
  menuBar.stlprf="horz_";
  menuBar.orient = "H";
  menuBar.showIcon = false;
  menuBar.showSubIcon = false;
  menuBar.stretchItem=false;
  menuBar.absWidth="795px";
  menuBar.addItem("1", "Services / Philosophy", "", [""], true, null, "services");
  menuBar.addSeparator();
  menuBar.addItem("2", "Company Profile", "", [""], true, null, "profile");
  menuBar.addSeparator();
  menuBar.addItem("3", "Literature", "", [""], true, null, "literature");
  menuBar.addSeparator();
  menuBar.addItem("4", "The Way2Wealth&#8482;", "way-2-wealth.html", [""]);
  menuBar.addSeparator();
  menuBar.addItem("5", "Press Room", "press-room.html", [""], true, null, "press");
  menuBar.addSeparator();
  menuBar.addItem("6", "Contact Us", "", [""], true, null, "contact");
  menuBar.dropShadow("none");
  menuBar.addSeparator();
  menuBar.addItem("7", "Home", "index.html", [""]);
  menuBar.dropShadow("none");
  
  function changeEffect(o) {
    menuMgr.defaultEffect=o.value;
    menuMgr.hideMenus();
    var oMn;
    for (var it in menuMgr.menus) {
      oMn=menuMgr.menus[it];
      if (o.value=="") {
        oMn.effect=null;
        oMn.rt.ready=true;
      } else {
        oMn.useEffect(menuMgr.defaultEffect);
      }
      var mn=NlsMenu.$GE(it);
      var elm=mn.childNodes[0];
      elm.style.top="0px";
      elm.style.left="0px";      
    }
  }