/*
[Instructions]
  When you want to add a menu item you call the "myMenu.AddMenu" method like so:
    myMenu.AddMenu( id, displayName, linkto, parentId )
  
  The following describe what each parameters mean:
    id          - a unique identifier, must be unique across all menu items
    displayName - what you want to display for the menu item
    linkto      - the page to link the menu to, not required
    parentId    - add this menu under a previously created menu; if it is not
                    entered, it puts the menu at the root level

  There is a function called "ShowMenu" which if passed a "menuId", will default
  the page to show the menu on load up.  The "ShowMenu" method must come after
  the "myMenu.Create()" method, which is the method to call to generate the
  menu.  For example:
  
    myMenu.Create();
    ShowMenu( "menu2" );
    
  The above will create the menu and show the menu items under the menu which
  was given the id "menu2" when the page loads. 
*/

myMenu = new paMenu();

myMenu.AddMenu( "menu1", "Community" );
   myMenu.AddMenu( "menu1_1", "Welcome", "http://www.ci.sherwood.or.us/community/welcome.html", "menu1" );
   myMenu.AddMenu( "menu1_2", "City History", "http://www.ci.sherwood.or.us/community/history.html", "menu1" );
   myMenu.AddMenu( "menu1_3", "New Resident Information", "http://www.ci.sherwood.or.us/community/new_resident.html", "menu1" );
   myMenu.AddMenu( "Menu1_4", "Organizations", "http://www.ci.sherwood.or.us/community/organizations.html", "menu1" );
   myMenu.AddMenu( "Menu1_5", "Parks", "http://www.ci.sherwood.or.us/government/departments/parks/index.html", "menu1" );
   myMenu.AddMenu( "Menu1_6", "Schools", "http://sherwood.k12.or.us/metadot/index.pl", "menu1" );
   myMenu.AddMenu( "Menu1_7", "Library", "http://www.sherwood.plinkit.org/", "menu1" );
   myMenu.AddMenu( "Menu1_8", "Upcoming Events", "http://www.ci.sherwood.or.us/community/events.html", "menu1");
   myMenu.AddMenu( "Menu1_9", "Volunteer Opportunities", "http://www.ci.sherwood.or.us/government/departments/library/volunteer.html", "menu1");
  
/*myMenu.AddMenu( "menu2", "Visitors" );
   myMenu.AddMenu( "menu2_1", "Upcoming Events", "http://www.ci.sherwood.or.us/events.html", "menu2" );
   myMenu.AddMenu( "menu2_2", "City history", "http://www.ci.sherwood.or.us/history.html", "menu2" );*/

myMenu.AddMenu( "menu3", "Business" );
   /*myMenu.AddMenu( "menu3_1", "Directory", "http://www.ci.sherwood.or.us/business/directory.html", "menu3" );&*/
   myMenu.AddMenu( "menu3_2", "Licenses", "http://www.ci.sherwood.or.us/business/bus_lic.html", "menu3" );
   myMenu.AddMenu( "menu3_3", "How to Start", "http://www.ci.sherwood.or.us/business/start_business.html", "menu3" );
   myMenu.AddMenu( "menu3_4", "Chamber of Commerce", "http://www.sherwoodchamber.org", "menu3" );

myMenu.AddMenu( "menu4", "City Government" );
   myMenu.AddMenu( "menu4_1", "City Manager Report", "http://www.ci.sherwood.or.us/government/weekly_report/index.html", "menu4" );
   myMenu.AddMenu( "menu4_2", "City Staff", "http://www.ci.sherwood.or.us/government/citystaff.html", "menu4" );
   myMenu.AddMenu( "menu4_3", "City Organization Chart", "http://www.ci.sherwood.or.us/government/organization_chart.pdf", "menu4" );
   myMenu.AddMenu( "menu4_4", "Departments", "http://www.ci.sherwood.or.us/government/departments/index.html", "menu4" );
   myMenu.AddMenu( "menu4_5", "Job Postings", "http://www.ci.sherwood.or.us/government/departments/human_resources/job_posting.html", "menu4" );
   myMenu.AddMenu( "menu4_6", "Municipal Code", "http://www.municode.com/Resources/gateway.asp?pid=16625&sid=37", "menu4" );
   myMenu.AddMenu( "menu4_7", "Records", "http://www.ci.sherwood.or.us/records/index.html", "menu4" );
   myMenu.AddMenu( "menu4_8", "Sherwood Archer", "http://www.ci.sherwood.or.us/government/archer/index.html", "menu4");
   
   
 /*  
 	myMenu.AddMenu( "menu4_8", "Letters from the Mayor", "http://www.ci.sherwood.or.us/government/mayor/index.html", "menu4" );
 	myMenu.AddMenu( "menu4_6", "Civic Building Project", "TEMPLATE_Subpages.htm", "menu4" );
   myMenu.AddMenu( "menu4_7", "Request for Proposal", "TEMPLATE_Subpages.htm", "menu4" );*/
   
   
myMenu.AddMenu( "menu5", "Boards & Commissions" );
   myMenu.AddMenu( "menu5_1", "Area 59", "http://www.ci.sherwood.or.us/city_boards/area_59/index.html", "menu5" );
   myMenu.AddMenu( "menu5_2", "Budget Committee", "http://www.ci.sherwood.or.us/city_boards/budget_committee/budget_committee.html", "menu5" );
   myMenu.AddMenu( "menu5_3", "Hearings Officer", "http://www.ci.sherwood.or.us/city_boards/hearings_officer.html", "menu5" );
   myMenu.AddMenu( "menu5_4", "Library Board", "http://www.ci.sherwood.or.us/city_boards/library_board/library_board.html", "menu5" );
   myMenu.AddMenu( "menu5_5", "Parks & Recreation Board", "http://www.ci.sherwood.or.us/city_boards/parks/parks.html", "menu5" );
   myMenu.AddMenu( "menu5_6", "Planning Commission", "http://www.ci.sherwood.or.us/city_boards/planning_commission/planning_commission.html", "menu5" );
   myMenu.AddMenu( "menu5_7", "Sherwood Cultural Arts", "http://www.ci.sherwood.or.us/city_boards/arts/arts.html", "menu5" );
   myMenu.AddMenu( "menu5_8", "SURPAC", "http://www.ci.sherwood.or.us/city_boards/surpac/surpac.html", "menu5" );
   myMenu.AddMenu( "menu5-9", "Telecommunications Advisory", "http://www.ci.sherwood.or.us/city_boards/tab/index.html", "menu5" );
   myMenu.AddMenu( "menu5_10", "Boards and Commissions Application", "http://www.ci.sherwood.or.us/application.pdf", "menu5" );
   
myMenu.AddMenu( "menu6", "City Council", "http://www.ci.sherwood.or.us/city_boards/city_council/city_council.html" );  
   
   
   
   