// 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', 'http://greencrescent.net/home.php'],
	['About Us', null, null,
		['Company Profile', 'http://greencrescent.net/companyprofile.php'],
		['Philosophy & Mission', 'http://greencrescent.net/mission.php'],
		['Benefits & Advantages', 'http://greencrescent.net/adventage.php']
	],
	['Network & Services', null, null,
			// this is how item scope settings are defined
			['Health Checkup', 'http://greencrescent.net/healthcheckup.php'],
			['Laboratory Activities', 'http://greencrescent.net/laboratory.php'],
			['Imaging', 'http://greencrescent.net/imaging.php'],
			['DNA Testing', 'http://greencrescent.net/dnatesting.php'],
			['Report Verification', 'http://greencrescent.net/reportverification.php'],
			['International network', 'http://greencrescent.net/ournetwork.php']
			
	],
	['Clients & partners', null,null,
			['Clients', 'http://greencrescent.net/clients.php'],
			['Strategic partners', 'http://greencrescent.net/partners.php']			
	],
	
	['US Panel Physician', 'http://greencrescent.net/panelphysician.php'],
	
	['Canadian DMP', 'http://greencrescent.net/immigration.php'],

	['Australian Physician', 'http://greencrescent.net/AustralianPanelPhysician.php'],
	
	['Contact Us', null,null,
				['Contact Us', 'http://greencrescent.net/contact.php'],
				['FeedBack', 'http://greencrescent.net/feedback.php']
	],
	['Download', 'http://greencrescent.net/download.php']
];


