// 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 = [
	['Classrooms', '/pages/NewPage.php?pg=classrooms', null,
		// 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'
		['Faculty', '/pages/NewPage.php?pg=faculty', null,],
		['Pictures', '/pages/NewPage.php?pg=pictures', null,],
		['Blogs', '/pages/NewPage.php?pg=blogs', null,],
		['Curriculum', '/pages/NewPage.php?pg=curriculum', null,],
	],
	['Extra Curricular', '/pages/NewPage.php?pg=extracurr', null,
		// this is how item scope settings are defined
		['Basketball', '/pages/NewPage.php?pg=basketball', null,],
		// this is how multiple item scope settings are defined
		['Track', '/images/Track Meet Pics/index.php', null,],
		['Forensics', '/pages/NewPage.php?pg=forensics', null,],
	],
	['Forms', '/pages/NewPage.php?pg=forms', null,
		['Registration', '/pages/NewPage.php?pg=registration', null,],
		['Handbook', '/pages/NewPage.php?pg=handbook', null,],
		['Supply List', '/pages/NewPage.php?pg=supplies', null,],
		['Photo Agreement', '/pages/NewPage.php?pg=photoagree', null,],
	],
	['Events / Calendar', '/pages/Calendar.php', null,
		['Calendar', '/pages/Calendar.php', null,],
		['Monday Notes', '/pages/NewPage.php?pg=monday', null,],
	],
	['About Us', '/pages/NewPage.php?pg=schoolabout', null,
		['Philosophy', '/pages/NewPage.php?pg=mission', null,],
		['FAQ', '/pages/NewPage.php?pg=faq', null,],
		['Test Scores', '/pages/NewPage.php?pg=scores', null,],
		['WELS', 'http://www.wels.net', null,],
		['Contact Us', '/pages/NewPage.php?pg=contact', null,],
	],
	['School Assistance', '/pages/NewPage.php?pg=assistance', null,
		['School Support Group', '/pages/NewPage.php?pg=ssg', null,],
		['Scrip', '/pages/NewPage.php?pg=scrip', null,],
		['Box Tops', '/pages/NewPage.php?pg=boxtops', null,],
		['Campbells', '/pages/NewPage.php?pg=campbells', null,],
		['Milk Tops', '/pages/NewPage.php?pg=milktops', null,],
		['Wish List', '/pages/NewPage.php?pg=wishlist', null,],
	]
];

