// 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.html', {'tw' : '_parent'}],
	['Principals Corner','principal.html', {'tw' : '_parent'}],
		['About Us', null, null,
		['Mission','mission.html', {'tw' : '_parent'}],
		['Philosophy','philosophy.html', {'tw' : '_parent'}],
		['History','#', {'tw' : '_parent'}]
	],
	['Staff','staff.html', {'tw' : '_parent'}],
	['School Calendar', 'calendar.html', {'tw' : '_parent'}],
	['Lunch Menus', 'calendar_lunch.html', {'tw' : '_parent'}],
	['Admissions','admissions.html', {'tw' : '_parent'}],
	['Pre-Kindergarten','Pre-Kindergarten.html', {'tw' : '_parent'}],
	['Tuesday Tidbits','tuesday_tidbits.html', {'tw' : '_parent'}],
	['Technology','technology.html', {'tw' : '_parent'}],
	['Parent Resources','parent.html', {'tw' :'_parent'}], 
	['Forms', 'forms.html', {'tw' : '_parent'}],
	['Photos', 'photos.html', {'tw' : '_parent'}]
	];
