// 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 = [
	['our productions', null, null,
		['current productions', 'currentproductions.html'],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t' 'javascript:alert(\'hello world\')'
		['archived productions', 'archivedproductions.html'],
		['ballet austion partnership', 'balletaustin.html'],
	],
	['our people', null, null,
		// this is how item scope settings are defined
		['artistic director', 'artisticdirector.html'],
		// this is how multiple item scope settings are defined {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}
		['board of directors', 'bod.html'],
		['polly people', 'pollypeople.html'],
		['interns &amp; volunteers', 'interns.html'],
		
	],
	['our sponsors', 'oursponsors.html'],
	['our story', null, null,
		['our name', 'ourname.html'],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t' 'javascript:alert(\'hello world\')'
		['philosophy', 'philosophy.html'],
		['awards', 'awards.html'],
	],
	['school tours', 'fallschooltours.html'],
	['for teachers', 'teachersite.html'],
	['contact us', 'contactus.html'],
	['home', 'index.html'],
];

