// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'index.shtml'],
	['Ecosystems Mapping', null, null,
		['Why Map Ecosystems?', 'why_map.shtml'],
		['GEOSS Ecosystems Task', 'geoss_task.shtml'],
		['Conceptual Approach & Methodology', 'method.shtml'],
	],
	['Project Areas', null, null,
		['United States', 'usa.shtml'],
		['South America', 'samerica.shtml'],
		['Africa', 'africa.shtml'],
	],
	['Products', null, null,
		['Data Information', 'data.shtml'],	
		['Data Viewer', 'dataviewer.shtml'],	
		['Publications', 'pubs.shtml'],
	],
	['References', 'refs.shtml'],
	['About Us', 'about_us.shtml'],
];

