// 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.php', null],
	['Services', 'services.php', null,
		// this is how item scope settings are defined
		['Service 1', null , null],
		// this is how multiple item scope settings are defined
		['Service 2', null , null],
		['Service 3', null]
	],
	['Strategy', null, null,
		['Strategy 1', null , null],
		// this is how multiple item scope settings are defined
		['Strategy 2', null , null],
		['Strategy 3', null]
	],
	['About Us', null, null,
		['Mission Statement', null , null],
		// this is how multiple item scope settings are defined
		['Team', null , null]
	],
	['Contact Us', null]
];


