// 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'], 
	['The Team', null, null, 
		['Dentists', 'dentists.htm'],
		['Practice Staff', 'staff.htm']
	], 
	['Information', null, null, 
		['Services', 'services.htm'], 
		['Fees', 'fees.htm'] 
	], 
	['Appointments', 'appointments.htm'], 
	['Find Us', 'find_us.htm']
];

