// 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.htm', null],
	['About Us', null, null,
		// this is how item scope settings are defined
		['Mission', 'mission.htm'],
		['Staff', 'staff.htm'], 
		['In The News', 'inthenews.htm'],
		['For The Press', 'forthepress.htm'],
		['Locations', 'locations.htm']
	],
	['Admissions', null, null,
		['Programs', null, null,
			['Mommy &amp Me', 'mommyandme.htm'],
			['Preschool', 'preschool.htm'],
			['Kindergarten/1st Grade', 'kindergarten.htm'],
			['2nd Grade/3rd Grade','2nd3rd.htm'],
			['After School', 'afterschool.htm'],	
			['Extended Care', 'extendedcare.htm'],
			['Summer Camp-Summit, NJ', 'summercamp.htm'],
			['Summer Camp-Beijing', 'beijing.htm'],
		],
		['Registration', 'registration.htm'],
		['School Calendar','schoolcalendar.htm'],
		['Parent Association','parentassociation.htm'],
		['Open House Schedule', 'openhouse.htm'],
		['FAQ', 'faqs.htm'],
		['Bus Transportation', 'bus.htm']

	],
	['Bilingual Education', null, null,
		['Adult Mandarin', 'adultmandarin.htm'],
		['Mandarin Chinese Learning', 'mandarinchineselearning.htm'],
		['Why Mandarin?', 'whymandarin.htm'],
		['Why Spanish?', 'whyspanish.htm'],
		['Why Start Early?', 'whystartearly.htm'],
	],
	['Home Support', 'homesupport.htm', null],
	
];

