// 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 = [
	['EVENTS', null, null,
		// this is how item scope settings are defined
		['Big Spring Auction', 'EventsBigSpringAuction.php'],
		['Sports Celebrity Dinner', 'EventsSportsCelebrityDinner.php'],
		['Lawtons & Progress Golf Tournament', 'EventsGolfTournament.php'],
		['IWK Dream Home', 'EventsIWKDreamHome.php'],
	],
	['CHARITIES', null, null,
		['Progress Centre for Early Intervention', 'CharitiesProgressCentre.php'],
		['Kings Meadow Home', 'CharitiesKingsMeadowHome.php'],
	]
];

