/*
  --- menu items --- 

 This menu structure is for the main page.  The array format is:
	Item 0 = Caption
	Item 1 = Link
	Item 3 = Item scope settings
	Item 4 = Sub Items

Note that if you do not have sub-items, you can simply eliminate putting
NULL items in the array list. If you do have sub-items, you need to add
the NULL as a filler. You can nest as many sub item levels as you need.

P. Gilbo July 2005.

Removed PMP Hall of Fame - 10/31/2005
Redirected Online Registration menu item to new page listing registrations on new system - 11/29/05
Added Events/Awards Photo Gallery - 03/05/2006 P. Gilbo
Changed/Added a new Photo Gallery Department - 03/22/2006 P. Gilbo
Temporarily disabled links to the Library and the Scholarships pages since they are very outdated.  Also removed NULL link to "Other Events" under the meetings menu. - 11/7/06  C.Morgan


*/
var MENU_ITEMS = [
	['About CVC', 'about.htm', null, 
		['Contact the CVC', 'about.htm#Contact'],
		['Board of Directors', 'officers.htm', null,
			['Board Meeting Minutes', 'board.htm'],
		],

 		['Membership', 'membership.htm', null,
			['Becoming a Member','membership.htm#become_member'],
			['Member Benefits', 'memb_ben.htm'],
			['Membership News', 'memb_news.htm'],
		],
		['Volunteer', 'volunteer.htm'],
		['Advertising Opportunities','advertise.htm'],
		['Mission', 'about.htm#Mission'],
		['Objectives', 'about.htm#Objectives'],
		['Services', 'about.htm#Services'],
		['History', 'about.htm#History'],
		['Administration', 'about.htm#Administration'],
	],
	['Certification', 'certif.htm', null,
		['Workshops', 'certif.htm#Workshops'],
	],
	['Meetings', 'programs.htm', null,
		['Upcoming Meetings', 'programs.htm#Upcoming'],
        ['Reservations', 'programs.htm#reservations'],
		['Previous Meetings', 'previous_events.htm'],
		
	],
	['News',null, null,
		['Join Mail Lists', 'lists.htm'],
		['Join Discussion Groups', 'dgroups.htm'],
		['Photo Gallery','http://www.pmicvc.org/photo-gallery.htm'],
		['Newsletters', 'newsletter.htm'],
		['President`s Letters', 'presidentletter.htm'],
		['Advertising Opportunities', 'advertise.htm'],
	],
	['Online Registration','currentregistrations.htm', null, null],
	['PartnerPM','partnerpm.htm', null, null],
	['PMO LIG','PMOLIG.htm', null, null],
	['Quantico Outreach','QuanticoOutreach.html', null, null],
	['Prof. Development','prodevelopment.htm', null,
		['Seminars', 'prodevelopment-seminars.htm'],
		['Maintaining Certification', 'prodevelopment-maintaincert.htm'],
/*		Temporarily disabling outdated pages.
		['College Scholarships', 'prodevelopment-vcupartner.htm'],
		['Bookstore', 'prodevelopment-library.htm'],
*/
	],
	['PM Topic Links', 'links.htm', null, 
		['Organizations','links.htm#organizations'],
		['Careers','links.htm#career'],
		['Process','links.htm#process'],
		['Quality','links.htm#quality'],
		['In Action','links.htm#action'],
		['Metrics','links.htm#metrics'],
		['Software','links.htm#software'],
		['Training','links.htm#training'],
		['Conferences','links.htm#conferences'],
		['Education','links.htm#education'],
		['Presentations','links.htm#presentations'],
		['Govt & Business','links.htm#government'],
	],
];

