// 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 = [

	// Menu 1
	['Kennel Info', null, null,
		['Facility', 'content.php?page=facility'],
		['Dogs', 'content.php?page=dogs'],
		['Cats', 'content.php?page=cats'],
		['Geriatric', 'content.php?page=geriatric'],
		['Food', 'content.php?page=food'],
		['Vaccinations', 'content.php?page=vaccinations'],
		['What to Bring', 'content.php?page=what_to_bring']
	],

	// Menu 2
	['Staff', null, null,
		['Staff', 'content.php?page=staff'],
		['Careers', 'content.php?page=careers']
	],

	// Menu 3
	['Photo Gallery', null, null,
		['Photos', 'content.php?page=photos'],
		['Video Clips', 'content.php?page=video_clips']		
	],
	
	// Menu 4
	['Hours &amp; Rates', null, null,
	 	['Hours / Boarding', 'content.php?page=hours_and_boarding'],
		['Medications', 'content.php?page=medications'],
		['Grooming', 'content.php?page=grooming']
	],
	
	// Menu 5
	['Directions', 'content.php?page=directions'],
	
	// Menu 6
	['Bookings', 'content.php?page=bookings']
];

