// 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', 		'http://www.hobokencs.org/awards.html'],
		['Board',  		'http://www.hobokencs.org/board.html'],
		['Who We Are', 		'http://www.hobokencs.org/who_we_are.html'],
	],
	['PA Officers', 'pa_officers.html'],
	['PA Meetings', null, null,
		['PA Meetings / Minutes', 'pa_schedule.html'],
		['PA Events', null, null,
			['Halloween Party', 	   'event_halloween.html'],
			['Fall Fest', 		   'event_fall_fest.html'],
			['Winter Cocktail Party',  'event_winter_party.html'],
			['Spring Wine Tasting',	   'event_spring_wine_tasting.html'],
			['Golf Outing',	           'http://www.swingforetheschools.com'],
			['Illumination Ball',	   'IlluminationBall.pdf'],
		],
	],
	['Fund Raising', 	null, null,
		['Committee Members', 		'hcsf_members.html'],
		['Donations', 		        'donations.html'],
		['Fall Fest', 			'event_fall_fest.html'],
		['Winter Cocktail Party',       'event_winter_party.html'],
		['Spring Wine Tasting',		'event_spring_wine_tasting.html'],
		['Golf Outing',	           	'http://www.swingforetheschools.com'],
		['Appeal to Parents',	        'hcsf_to_parents.pdf'],
		['Appeal to Others',		'hcsf_to_others.pdf'],
		['Corporate Matching', 		'hcsf_matching.html'],
		['Corporate Sponsors', 		'corporate_sponsors_2010.html'],
		['Easy Savings Brochure', 	'savingsbrochure.pdf'],
		['State Financing / Taxes', 	'hcsf_state_financing.html'],
		['Donors - 2011-12', 		'donors_2011_12.html'],
		['Donors - 2010', 		'donors_2010.html'],
		['Donors - 2009', 		'hcsf_donors_2009.pdf'],
	],
	['Donate Now', 'donate_now.html'],
	['Contact Us', 'contact_us.html'],
];

//	['Donate Now', 'https://volunteer.united-e-way.org/hobokencharterschool/donate'],

