
			
/* Left Navigation Bar Content

IMPORTANT:
	- Menus MUST include the top level (but it is not displayed).
 	- Menus can go 3 levels deep (including top level).
	- See Tyler Bittner <tyler@med.nyu.edu> for questions.

EXAMPLES:
leftnav[0] = { text:'Link Text', url:'/path/'};
	leftnav[0][0] = { text:'Link Text', url:'/path/sub/'};
		leftnav[0][0][0] = { text:'Link Text', url:'/path/sub/sub'};
*/
createMenuTop();
var leftnav = new Array();
/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'Home', url:'/clinicalinvestigation/'};
leftnav[1] = {text:'About Us', url:'/aboutus/'};
	leftnav[1][0] = {text: 'Why Choose Us?', url: '/aboutus/whyus/'};
	leftnav[1][1] = {text: 'Meet Our Doctors', url: '/aboutus/surgeons/'};
	leftnav[1][2] = {text: 'Meet Our Team', url: '/aboutus/team/'};
leftnav[2] = {text:'Getting Started', url:'/beforesurgery/'};
	leftnav[2][0] = {text: 'Is Surgery Right?', url: '/beforesurgery/right.html'};	
	leftnav[2][1] = {text: 'Information Session', url: '/beforesurgery/information.html'};	
	leftnav[2][2] = {text: 'Payment Options', url: '/beforesurgery/payment.html'};	
	leftnav[2][3] = {text: 'Medical Records', url: '/beforesurgery/records.html'};	
	leftnav[2][4] = {text: 'Psychologist', url: '/beforesurgery/psychologist.html'};	
	leftnav[2][5] = {text: 'Nutritional Assessment', url: '/beforesurgery/nutrition.html'};	
	leftnav[2][6] = {text: 'Consultation', url: '/beforesurgery/consultation.html'};	
leftnav[3] = {text:'Obesity', url:'/obesity/'};
	leftnav[3][0] = {text:'What is Morbid Obesity?', url:'/obesity/morbidobesity.html'};
	leftnav[3][1] = {text:'Are You Overweight?', url:'/obesity/obesity.html'};
	leftnav[3][2] = {text:'Health Risks of Morbid Obesity', url:'/obesity/risks.html'};
	leftnav[3][3] = {text:'Psychological Effects of Obesity', url:'/obesity/effects.html'};
leftnav[4] = {text:'Surgery Options', url:'/obesitysurgery/'};
	leftnav[4][0] = {text: 'Is it Safe?', url: '/obesitysurgery/safe.html'};
	leftnav[4][1] = {text: 'Which Should You Choose?', url: '/obesitysurgery/whichisright.html'};
	leftnav[4][2] = {text: 'Adjustable Gastric Banding', url: '/obesitysurgery/lapband.html'};
	leftnav[4][3] = {text: 'Gastric Bypass', url: '/obesitysurgery/gastricbypass.html'};
	leftnav[4][4] = {text: 'Biliopancreatic Diversion', url: '/obesitysurgery/diversion.html'};
		leftnav[4][5] = {text: 'Vertical Sleeve Gastrectomy', url: '/obesitysurgery/gastrectomy.html'};
		leftnav[4][6] = {text: 'SILS', url: '/obesitysurgery/SILS.html'};
	leftnav[4][7] = {text: 'Risks of Weight-Loss Surgery', url: '/obesitysurgery/risks.html'};
	leftnav[4][8] = {text: 'Benefits of Weight-Loss Surgery', url: '/obesitysurgery/benefits.html'};
leftnav[5] = {text:'After Surgery', url:'/surgicalweightloss/'};	
	leftnav[5][0] = {text:'Gastric Banding Adjustments', url: '/surgicalweightloss/band_adjustment.html'};
	leftnav[5][1] = {text:'Gastric Banding Post-op Care', url: '/surgicalweightloss/lapband_postsurgery.html'};
	leftnav[5][2] = {text:'Surgical Revisions', url: '/surgicalweightloss/revisions.html'};
	leftnav[5][3] = {text:'Side Effects', url: '/surgicalweightloss/sideeffects.html'};
	leftnav[5][4] = {text:'Benefits of Weight-Loss Surgery', url: '/surgicalweightloss/benefits.html'};
	leftnav[5][5] = {text:'Testimonials', url: '/surgicalweightloss/testimonials.html'};
	leftnav[5][6] = {text:'Support Groups', url: '/surgicalweightloss/supportgroups/'};
leftnav[6] = {text:'Video Library', url:'/video/'};	
	leftnav[6][0] = {text:'Doctor Videos', url:'/video/doctor_video.html'};	
	leftnav[6][1] = {text:'TV Appearances &amp; Other Videos', url:'/video/tv.html'};	
leftnav[7] = {text:'News &mp; Events', url:'/news/'};
	leftnav[7][0] = {text:'Testimonials', url:'/news/testimonials/'};
	leftnav[7][1] = {text:'Before and After Photos', url:'/news/photos/'};
	leftnav[7][2] = {text:'News Articles', url:'/news/stories/'};
	leftnav[7][3] = {text:'Newsletter', url:'/news/newsletter/'};
	leftnav[7][4] = {text:'Events', url:'/news/events.html'};
leftnav[8] = {text: 'Research', url: '/research/'};
leftnav[8][0] = {text: 'Collaborating Study', url: '/research/study.html'}
	leftnav[8][1] = {text: 'Clinical Trials', url: '/research/clinicaltrials.html'}
	leftnav[8][2] = {text: 'Surgery for Adolescents', url: '/research/adolescentobesitysurgery.html'}
	leftnav[8][3] = {text: 'Publications', url: '/research/publications.html'}
leftnav[9] = {text: 'Contact', url: '/contact/'};	
	leftnav[9][0] = {text: 'Ask a Question', url: '/contact/askaquestion.html'};
	leftnav[9][1] = {text: 'FAQs', url: '/contact/faqs/'};
	leftnav[9][2] = {text: 'Events', url: '/contact/events.html'};
	leftnav[9][3] = {text: 'Directions, Map, Parking', url: '/contact/directions.html'};
				
/* DO NOT EDIT BELOW */
leftnavBuild(leftnav);
createMenuEnd();