// 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 = [
	['About Us', 'index.php', null,
		['Mission, Vision, Values', 'index.php'],
		['Leadership Team', 'leadership-team.php'],
		['References', 'references.php'],
	],
	['Products & Services', 'services.php', null,
		['Carbon Management', 'http://www.carbonmanagers.org'],
		['Energy Benchmarking', 'http://www.energybenchmarking.com'],
		['Wireless Sub-Metering', 'sub-metering.php'],
		['Integrated Solutions', 'services.php#integrated_solutions'],
	],
	['Newsroom', 'news.php', null,
		['News', 'news.php'],
		['Publications', 'publications.php'],
		['Case Studies', 'case-studies.php'],
	],
	['Contact Us', 'contact.php', null]
];


