// 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.htm'],
	['About Us', 'AboutUs.htm'],
	['Our leadership', 'Ourleadership.htm'],
	['Services', 'Services.htm'],
	['Clients', 'Clients.htm'],
	['Success Stories', 'SuccessStories.htm'],
	['Media Center', null, null,
		['Press Releases', 'PressReleases.htm'],
		['Videos', 'videos.htm']
	],

	['Contact Us', 'ContactUs.htm']
];


