// menu_items.js file

var MENU_ITEMS = [
	["Home", "/index.php"],
	["Payments", "/payments.php"],
	["Mathew", null, null,
		["Contact Mathew", "/contact.php#contact-details"],
		["Payment Methods", "/contact.php#payment-methods"],
		["Terms and Conditions", "/contact.php#termsandconditions"],
		["Qualifications", "/qualifications.php"],
		["Feedback", "/classes/feedback.php"],
		],
	["Classes", null, null,
		["Payments", "/payments.php"],
		["Ashtanga Vinyasa Yoga", "/classes/ashtanga_vinyasa_yoga.php"],
		["Hatha Yoga", "/classes/hatha-yoga.php"],
		["Yin Yoga", "/classes/yin-yoga.php"],
		["Pilates", "/classes/pilates.php"],
		["Pregnancy", "/pregnancy-yoga.php"],		
		["Private Classes", "/private-tuition.php"],
		["Mysore Style Self-Practice", "/self-practice.php"],
	],
	["Workshops", null, null,
		["Manju Jois", "/manju-jois-workshop.php"],
		["John Cremer", "/john-cremer-workshop.php"],
	],
	["PrivateTuition", "/private-tuition.php"],
	["Venues", null, null,
		["Chorlton Methodist Church", "/v/chorlton-methodist-church.php"],
		["Christ Church", "/v/christ-church.php"],
		["Longford Park School", "/v/longford-park.php"],		
		["Heaton Moor Methodist", "/v/heaton-moor-methodist-church.php"],
	],
	["Galleries", null, null,
		["Yoga Asanas", "/galleries/yoga_asanas_gallery.php"],
		["Ashtanga Primary Series", "/galleries/primary_series_sequence.php"],
		["Pilates", "/galleries/pilates_gallery.php"],
		["Yin Yoga", "/galleries/yin_yoga_gallery.php"],
		["Who's in the galleries?", "/galleries/models.php"]
	],
	["Resources", "/resources.php"],
	["FAQ", "/faq.php"],
	["Links", null, null,
		["Links", "/links.php"],
		["Link Exchange", "/link-exchange.php"]
	],		
	["About", "/contact.php"]
];
