// 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 = [
	
	['&nbsp; EVENTS / ATTRACTIONS', '/events.php', null,
		['VISITOR INFO', '/info.php'],
		['EVENT CALENDAR', '/events.php'],
		['THINGS TO DO', '/esp.php']
	],
	
	['&nbsp; MERCHANTS / GOVT.', '/merchant.php', null,
		['MAP OF BIRNAMWOOD', '/map.php'],
		['MERCHANT LISTING', '/merchant.php'],
		['GOVERNMENT LISTINGS', '/merchant.php']
		
	],
	
	['&nbsp; ABOUT BIRNAMWOOD', '/history.php', null,
		['HISTORY', '/history.php'],
		['EVENT CALENDAR', '/events.php'],
		['NEWS', '/news.php'],
		['SPORTS', '/sport.php'],
		['WEATHER', '/weather.php'],
		['PHOTO GALLERY', '/gallery.php'],
		['FAQ', '/faq.php']
		
	],
	
	['&nbsp; DIRECTIONS & MAPS', '/map.php'],
	
	['&nbsp; OPPORTUNITIES', '/opportunity.php', null,
		['REAL ESTATE', '/opportunity.php'],
		['JOBS', '/opportunity.php'],
		['BUSINESS OPPORTUNITIES', '/opportunity.php']
		
	],

	['&nbsp; BUSINESS TOOLBOX', '/toolbox.php', null,
		['ABOUT US', '/toolbox.php'],
		['MISSION & GOALS', '/toolbox.php'],
		['STATE PROGRAMS', '/toolbox.php'],
		['FEDERAL PROGRAMS', '/toolbox.php'],
		['CITY CONTACTS', '/merchant.php']
		
	],
	
	
     ['&nbsp; CONTACT / SUPPORT', '/contact.php']
	];

