// 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'],
	['School Info', null, null,
		['Home Page', 		'http://www.hobokencs.org'],
		['Awards', 		'awards.html'],
		['Board',  		'board.html'],
		['Teaching Staff', 	'http://www.hobokencs.org/StaffK-12.htm'],
		['Mission', 		'http://www.hobokencs.org/mission%20statement.htm'],
	],
	['PA Officers', 'pa_officers.html'],
	['PA Meetings', null, null,
		['PA Meetings / Minutes', 'pa_schedule.html'],
		['PA Events', 		'pa_events.html'],
	],
	['Fund Raising', 	null, null,
		['Committee Members', 		'hcsf_members.html'],
		['Donations', 		        'donations.html'],
		['Appeal to Parents',	        'hcsf_to_parents.pdf'],
		['Appeal to Others',		'hcsf_to_others.pdf'],
		['Corporate Matching', 		'hcsf_matching.html'],
		['Corporate Sponsors', 		'hcsf_corporate_sponsors.html'],
		['Easy Savings Brochure', 	'savingsbrochure.pdf'],
		['State Financing / Taxes', 	'hcsf_state_financing.html'],
		['Donors - 2010', 		'donors.html'],
		['Donors - 2009', 		'hcsf_donors_2009.pdf'],
	],
	['Donate Now', 'https://volunteer.united-e-way.org/hobokencharterschool/donate'],
	['Contact Us', 'contact_us.html'],
];

