// 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'],
	['Calendar', './calendar.php'],
	['Films', null, null,
		['Upcoming', './films.php'],
		['Previous', './pastfilms.php'],
		['2010-2011', './pastfilms.php?cid=10'],
		['2009-2010', './pastfilms.php?cid=9']			
	],	
	['Advertise', './advertise.php'],
	['Contribute', './contribute.php'],
	['Volunteer', './volunteer.php'],
	['About', null, null,
		['Tickets', './tickets.php'],
		['Map', 'http://www.mapquest.com/maps?city=Park+City&state=UT&address=1255+Park+Ave', {'tw':'_blank'}],
		['Dinner and a Movie', './dinnerandamovie.php'],
		['Our Mission', './about.php']
	],
	['Contact', './contact.php'],
	['Login', null, null,
		['Board Members', './members/members.php'],
		['Projectionists', './members/projschedule.php']
	]
];


