// 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', '/rmgsc/index.shtml'],
	['Our Science Agenda', null, null,
		['Land Cover Mapping, Status & Trends', '/rmgsc/sci_landcover.shtml'],
		['Landscape Change Analysis & Modeling', '/rmgsc/sci_landscape.shtml'],
		['Natural Hazards Risk & Vulnerabilities Assessment', '/rmgsc/sci_nathaz.shtml'],
		['Remote Sensing Research & Development', '/rmgsc/sci_remotesens.shtml'],
	],
	['Applications', '/rmgsc/apps.shtml'],
	['Publications', null, null,
		['Papers', '/rmgsc/pubs_papers.shtml'],
		['Posters', '/rmgsc/pubs_posters.shtml'],
	],
	['About Us', null, null,
		['Contact RMGSC', '/rmgsc/contact_us.shtml'],
		['Organization', '/rmgsc/organization.shtml'],
		['Personnel', '/rmgsc/personnel.shtml'],
	],
	['Project Archive', '/rmgsc/proj_archive.shtml']
];

