// menu_items.js file
// comments block here

var MENU_ITEMS =[
	["Home", "index.php",
	 ["Home", "index.php"],
	 ["Our Team", "news.php"],
	 ],
	
	["Therapies", "therapy.php",
		["Physiotherapy", "physio.php"],
		["Massage", "massage.php"],
		["Chinese Medicine", "natural.php"],
		["Personal Coaching", "coaching.php"],
		["Orthotics & Bracing", "orthotics.php"],
		["Acupuncture", "acu.php"],
	],
	["Info", "info.php",
		["Articles", "edu.php"],
		["Links", "links.php"],
	],
		
	["Products", "products.php",
	["Product Overview", "products.php"],
	["Air Purifiers", "air-purifiers.php"],
	],
	
	 ["Help", "faq.php",
	  ["F.A.Q.", "faq.php"]
	 ],
	 
	["Contact Us", "contact.php",
	 ["Contact Info", "contact.php"]
	 ]
];

