// 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'],
	['Overview', 'overview.php', null,
		['Show Dates', 'overview.php#ShowDates'],
		['Location', 'overview.php#Location'],
		['Admission', 'overview.php#Admission'],
		['Facilities', 'overview.php#Facilities'],
		['Patron Parking', 'overview.php#PatronParking'],
		['Show Grounds Map', 'pdf/sitemap.pdf'],
		['Volunteer', 'overview.php#Volunteer'],
		['Miscellaneous', 'overview.php#Miscellaneous'],
		['Contact', 'overview.php#Contact'],
		['Credits', 'overview.php#Credits'],
	],
	['Exhibitors', null, null,
		['Acrylics/Oils', 'exhibitor.php?class_id=ACRYLIC'],
		['Clay/Porcelain', 'exhibitor.php?class_id=CLAY'],
		['Drawings/Pastels', 'exhibitor.php?class_id=DRAWING'],
//		['Emerging Artists', 'exhibitor.php?class_id=EMERGING'],
		['Fabrics/Fiber', 'exhibitor.php?class_id=FABRIC'],
		['Glass', 'exhibitor.php?class_id=GLASS'],
		['Jewelry', 'exhibitor.php?class_id=JEWELRY'],
		['Leather', 'exhibitor.php?class_id=LEATHER'],
		['Metal', 'exhibitor.php?class_id=METAL'],
		['Miscellaneous', 'exhibitor.php?class_id=MISC'],
		['Mixed Media', 'exhibitor.php?class_id=MIXED'],
		['Paper', 'exhibitor.php?class_id=PAPER'],
		['Photography', 'exhibitor.php?class_id=PHOTO'],
		['Printmaking/Graphics', 'exhibitor.php?class_id=PRINT'],
		['Sculpture', 'exhibitor.php?class_id=SCULPTURE'],
		['Watercolors', 'exhibitor.php?class_id=WATERCOLOR'],
		['Wood', 'exhibitor.php?class_id=WOOD'],
	],
	['Activities', '/activities.php', null,
		['Live Music', '/activities.php#LiveMusic'],
		['Strolling Performers', '/activities.php#StrollingPerformers'],
		['Kids Art Show', '/activities.php#KidsArtShow'],
		['Food Court', '/activities.php#FoodCourt'],
		['Volunteer', 'overview.php#Volunteer'],
	],
	['Apply', 'apply.php', null,
		['Important Dates', 'apply.php#ImportantDates'],
		['Exhibitor Fees', 'apply.php#ExhibitorFees'],
		['Show Grounds Map', 'pdf/sitemap.pdf'],
		['Exhibitor Check-in/out', 'apply.php#ExhibitorCheckin'],
		['Exhibitor Parking', 'apply.php#ExhibitorParking'],
		['Apply at ZAPP', 'http://www.ZAPPlication.org'],
	],
	['Store', 'store.php']
];

