// 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'],
	['Who We Are', null, null,
		['An Overview', 	    'who_we_are.html'],
		['Scope and Sequence, K-8', 'Scope_and_Sequence_K_8.pdf'],
		['Awards', 		    'awards.html'],
		['Board',  		    'board.html'],
		['Board Minutes', 	    'board_minutes.html'],
		['Charter Renewal',         'CharterRenewal.pdf'],
		['The High School',         'http://www.wix.com/tpaphoto/hobokencs'],
	],
	['News & Events', null, null,
		['K-8 Calendar',  	'HCS_Calendar.pdf'],
		['Open House',  	'Open_House_Announcement.pdf'],
		['Newsletters', 	'news_letters.html'],
	],
	['Policies & Plans', null, null,
		['K-8 Policies', 		'policies/K_8_Policy_Book.pdf'],
		['HS Policies', 		'policies/HS_Policy_Book.pdf'],
		['No Child Left Behind', 	'nclb.html'],
		['Educator Eval System', 	'policies/Teacher_and_Principal_Evaluation_System.pdf'],
		['K-12 HIB Policies', 	        'policies/K-12_HIB_Policy.pdf'],
		['Nondiscrimination Notice', 	'policies/Comprehensive_Equity_and_Nondiscrimination_Notice.pdf'],
	],
	['Admissions', null, null,
		['Applications', 	'admissions.html'],
		['Lottery Policy', 	'lottery_policy.html'],
	],
	['The PA', 'http://hcs-pa.org'],
	['Contact Us', null, null,
		['Main Offices', 	'main_offices.html'],
		['K-8 School',  	'k_8.html'],
		['High School', 	'high_school.html'],
		['Administration', 	'admin.html'],
	]
];


