// 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.html'],
	['Resource Vault', 'documents.html', null],
	['Useful Links & Sponsors', 'links.html', null],
	['', null, null],
	['About', null, null,
		['Around Kinross', 'aboutKinross.html']
	]
];


