// 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
	],
	['Our Park', null, null,
		['Description', 'parkdesc.php'],
		['History', 'history.php'],
		['Directions', 'directions.html'],
		['Photo Gallery', 'minishowcase/index.php']
	],
	['Golf', null, null,
		['Description', 'golfdesc.html'],
		['Rates', 'golfrates.php', null],
		['Score Card', 'scorecard.php', null],
		['Directions', 'directions.html', null]
	],
	['Event Calendar', 'ltwCalendar/calendar.php'],
	['Links', 'links.php'],
	['Resident Login', 'reslogin.php', null],
	['Contact', 'contact.php', null]
];


