
function onLoad() {
   window.myMenu = new Menu("Home");
    myMenu.addMenuItem("Home","location='/index.html'");
    myMenu.addMenuItem("Prayer Request", "location='/prayreq.html'");
    myMenu.addMenuItem("Sermons", "location='/sermons.html'");
    myMenu.addMenuItem("Guest Book", "location='/guestbook.html'");
    myMenu.addMenuItem("Frequently Asked Questions", "location='/faq.html'");
    myMenu.addMenuItem("Contact Us", "location='/contact.html'");
    myMenu.addMenuItem("Site Map", "location='/sitemap.html'");
    myMenu.disableDrag = true;
     
         myMenu.fontColor= "#040353";
         myMenu.menuItemBgColor="white";
         myMenu.fontFamily="arial, helvetica, sans-serif";
         myMenu.fontSize = 12;
         myMenu.fontWeight = "Bold";
         myMenu.menuHiliteBgColor="#eec00a";
         
    window.mySubMenu2 = new Menu("Church Boards");
    mySubMenu2.addMenuItem("Jr. Mission", "location='/jrmiss.html'");
    mySubMenu2.disableDrag = true;      

   window.myMenu2 = new Menu("Our Church");
    myMenu2.addMenuItem("Who We Are", "location='/aboutus.html'");
    myMenu2.addMenuItem("What We Believe", "location='/belive.html'");
    myMenu2.addMenuItem("Where We Are", "location='/locate.html'");
    myMenu2.addMenuItem("The Local Church", "location='/localchurch.html'");
    myMenu2.addMenuItem("Our School", "location='/school.html'");
    myMenu2.addMenuItem("Our Scholarship Progam", "location='/scholarship.html'");
    myMenu2.addMenuItem("Our History", "location='/celebrate.html'");
    myMenu2.addMenuItem(mySubMenu2);
    myMenu2.disableDrag = true;
  
    
       
   window.myMenu3 = new Menu("News & Events");
    myMenu3.addMenuItem("General Days", "location='/gendays.html'");
    myMenu3.addMenuItem("General Church Calendar", "javascript:newsmallwindow('http://www.fbhchurch.org/cgi-bin/calendar/calendar.pl')");
    myMenu3.addMenuItem("&quot;Around the Church&quot;", "location='/news.html'");
    myMenu3.addMenuItem("Annual Conventions", "location='/annual_conv.html'");
    myMenu3.addMenuItem("Major Newspapers", "location='/mnpapers.html'");
    myMenu3.disableDrag = true;
    

   window.myMenu4 = new Menu("Reference Shelf");
    myMenu4.addMenuItem("Computers & Internet","location='/reftools.html'");
    myMenu4.addMenuItem("On-line Bibles & Tools", "location='/bibles.html'");
    myMenu4.addMenuItem("On-line Dictionaries", "location='/diction.html'");
    myMenu4.addMenuItem("Church Forms", "location='/forms.html'");
    myMenu4.addMenuItem("Church Literature", "location='/literature.html'");
    myMenu4.addMenuItem("Downloads", "location='/downloads.html'");
    myMenu4.addMenuItem("Health Links", "location='/health.html'");
    myMenu4.addMenuItem("Other Links", "location='/olinks.html'");
    myMenu4.disableDrag = true;
    

   window.myMenu5 = new Menu("Memorial Wall");
    myMenu5.addMenuItem("About the Wall", "location='/memwall.html'");
    myMenu5.addMenuItem("In Memory of...", "location='/inmemory.html'");
    myMenu5.addMenuItem("In Honor of ...", "location='/inhonor.html'");
    myMenu5.addMenuItem("The Garden", "location='/garden.html'");
    myMenu5.disableDrag = true;
    

    myMenu.prototypeStyles = myMenu;
    myMenu.writeMenus();
   
}
