function getMenuItems() {
  return [
    {
      id: "Welcome",
      itemdata: [
          { text: "Contacting Us",  url: "contactingus.html" },
          { text: "Pastoral Staff", url: "pastors.html" },
      ]
    },
    {
      id: "Ministries",
      itemdata: [
        //{ text: "Adults",
        //  submenu: {
        //    id: "Adults",
        //    itemdata: [
        //      { text: "Connection Groups",  url: "adultSundaySchool.html" },
        //      { text: "Men's Ministry",     url: "mensMinistries.html" },
        //      { text: "Women's Ministry",   url: "womensMinistries.html" }
        //    ]
        //  }
        //},
        // { text: "College", url: "college.html" },
        { text: "Kids",    url: "kids.html",
          submenu: {
            id: "Kids",
            itemdata: [
              { text: "Kids Page",    url: "kids.html" },
              { text: "Kids Council", url: "kidscouncil.html" },
              { text: "Volunteers",   url: "kidsvolunteers.html" },
              { text: "Verse of the Month", url: "kidsverseofthemonth.html" },
              // { text: "Calendar",     url: "kidscalendar.html" },
              { text: "Parents",      url: "kidsparents.html" },
              { text: "Links",        url: "kidslinks.html" }
            ]
          }
        },
         { text: "Teens",   url: "teens.html",
          submenu: {
            id: "Teens",
            itemdata: [
            { text: "Into The World", url: "teens.html" },
            { text: "ITW Schedule",   url: "teenschedule.html" }
            ]
          }
        },
        { text: "Worship", url: "worship.html",
          submenu: {
            id: "Worship",
            itemdata: [
              // { text: "Communion", url: "communion.html" },
              { text: "Worship Arts",
                submenu: {
                  id: "WorshipArts",
                  itemdata: [
                    { text: "Worship Team", url: "worshipteam.html" },
                    // { text: "Musicians",    url: "musicians.html" },
                    { text: "Schedule",     url: "worshipschedule.html" }
                  ]
                }
              },
              { text: "Media Arts", url: "mediaarts.html" }
            ]
          }
        }
      ]
    },
    {
      id: "Missions",
      itemdata: [
        { text: "The Local 'Us'",
          submenu: {
            id: "Us",
            itemdata: [
              { text: "Bread of Life", url: "breadoflife.html" }
            ]
          }
        },
        { text: "The Extended 'Us'", url: "missions.html",
          submenu: {
            id: "Global",
            itemdata: [
              { text: "Flags", url: "flags.html" }
            ]
          }
        }
      ]
    }
  ];
}
