// 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 / CLASSES', '/events.php', null,
		['CALENDAR OF EVENTS', '/events.php'],
		['COOKING CLASSES', '/cookingclasses.php'],
		['EVENT RENTAL', '/rental.php']
	],
	
	['VENDORS', '/vlist.php', null,
		['PLAN YOUR VISIT', '/events.php'],
		['MAP OF THE MARKET', '/map01.php'],
		['VENDOR LISTING', '/vlist.php'],
		['INDOOR/OUTDOOR MARKET', '/outdoormarket.php'],
		
	],
	
	['ABOUT THE MARKET', '/history.php', null,
		['PHOTO GALLERY', '/photos.php'],
		['HISTORY', '/history.php'],
		['MISSION, VISION & GOALS', '/mission.php'],
		['CALENDAR OF EVENTS', '/events.php'],
		['EVENT RENTAL', '/rental.php'],
		['NEWS', '/news.php'],
		['FAQ', '/faq.php'],
		
	],
	
	['DIRECTIONS & PARKING', '/plan.php'],
	
	['NEWS / FEATURES', '/news.php', null,
		['CALENDAR OF EVENTS', '/events.php'],
		['NEWS', '/news.php'],
		['COOKING CLASSES', '/cookingclasses.php'],
		['EVENT RENTAL', '/rental.php']
		
	],
	
	
    ['CONTACT US', '/contact.php']
	];

