// 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.htm'], 
	['MEET VOX', 'meet_vox.htm'],
	['PERFORMANCE', null, null, 
		['Repertoire', 'repertoire.htm'],
		['Examples', 'examples.htm'],
		['Videos', 'videos.htm']
	], 
	['MUSIC', null, null, 
		['Radio VOX', 'javascript:window.open("radiovox.htm", "_radio")'],
		['Vox Shop', 'music.htm']
	],
	['BOOKINGS', 'book.htm'], 
	['COMMUNITY', null, null, 
		['Mailing List', 'mailing_list.htm'],
		['Links', 'links.htm'],
		['Email Us', 'mailto:info@voxconcordia.com']
	], 
];

var MENU_ITEMS_HOME = [
	["Cool2Care", "index.html"]
];

var MENU_ITEMS_ABOUT = [
	["About Us", "about.html"], 
	["Shaun's Story", "about_storyofcool2care.html"],
	["Videos", "about_videos.html"],
	["Testimonials", "about_testimonials.html"],
	["Latest News", "about_news.html"],
	["Vacancies", "about_vacancies.html"]
];

var MENU_ITEMS_FAMILIES = [
	['Supporting Families', 'families.html'], 
	['Each Child Is Unique', 'families_unique.html'], 
	['Affordable Care', 'families_affordable_care.html'], 
	['Quality & Excellence', 'families_quality_excellence.html'] 
];

var MENU_ITEMS_CARERS = [
		['Care-Workers', 'carers.html'], 
		['Supporting Families', 'carers_supporting_families.html'], 
		['Education & Learning', 'carers_education_learning.html'], 
		['Training Courses', 'carers_training_dates.html'], 
		['Terms & Conditions', 'carers_terms_conditions.html'] 
];

var MENU_ITEMS_DONATE = [
	["Donations", "donate.html"]
];

var MENU_ITEMS_CONTACT = [
		['Family Contact', 'contact.html'],
		['Carer Contact', 'contact_carers.html'] 
];
