// 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', 'Default.aspx', { 'tw': '_self' }
	],
	['Mission', 'Mission.aspx', { 'tw': '_self' }
	],
	['Strategies', 'Strategies.aspx', { 'tw': '_self' }
	],
	['Courses','', {'tw' : '_self'},
		['Fall Schedule','FallCourseSchedule.aspx', {'tw' : '_self'}],
        ['Spring Schedule', 'SpringCourseSchedule.aspx', { 'tw': '_self'}],
        ['Summer Schedule', 'SummerCourseSchedule.aspx', { 'tw': '_self'}],
		['Courses We Offer','Courses.aspx', {'tw' : '_self'}]
	],	
	//['Apply Online','NewApplyOnline.aspx', {'tw' : '_self'}
	//],
	['Links', 'Links.aspx', { 'tw': '_self' }
	],
	//['Staff', 'Staff.aspx', { 'tw': '_self' }
	//],
	['Contact Us','ContactUs.aspx', {'tw' : '_self'}]
];