// 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'],
	['News', 'news.html'],
	['Help', 'help.html'],
	['Volunteer', 'volunteer.html'],
	['Calendar', 'calendar.html'],
	['Partners', 'subpage1.html'],
	['Gallery', 'gallery.html'],
	['Contact', 'contact.html'],
	['Events', 'events.html'],
	['Book A Ride', 'book.html']
];

