/* DO NOT EDIT DIRECTLY BELOW */

createMenuTop();

// 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/to/link/'};

//     leftnav[0][0] = { text:'Link Text', url:'/path/to/link/'};

//         leftnav[0][0][0] = { text:'Link Text', url:'/path/to/link/'};

//

var leftnav = new Array();

/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'Home', url:'/index.html'};
leftnav[1] = {text:'Services', url:'/services/'};
	leftnav[1][0] = {text:'Services', url:'/services/'};
	leftnav[1][1] = {text:'Anesthesiology', url:'/services/anesthesiology.html'};
	leftnav[1][2] = {text:'Equipment Sales &amp; Rental', url:'/services/equipment.html'};
	leftnav[1][3] = {text:'In-Vitro Fertilization', url:'/services/fertilization.html'};
	leftnav[1][4] = {text:'Maternal-Fetal Therapy', url:'/services/therapy.html'};
	leftnav[1][5] = {text:'Maternal Well-Being', url:'/services/maternal.html'};
	leftnav[1][6] = {text:'Neonatal Intensive Care', url:'/services/nicu.html'};
	leftnav[1][7] = {text:'Patient Representatives', url:'/services/representatives.html'};
	leftnav[1][8] = {text:'Prenatal/Postpartum Physical Therapy', url:'/services/postpartum.html'};
	leftnav[1][9] = {text:'Social Services', url:'/services/social.html'};
	leftnav[1][10] = {text:'Ultrasound &amp; Diagnostics', url:'/services/ultrasound.html'};
leftnav[2] = {text:'Groups &amp; Classes', url:'/classes/'};
	leftnav[2][0] = {text:'Preparing for Childbirth', url:'/classes/childbirth.html'};
	leftnav[2][1] = {text:'Sibling Class', url:'/classes/sibling.html'};
	leftnav[2][2] = {text:'Breastfeeding Class', url:'/classes/breastfeeding.html'};
	leftnav[2][3] = {text:'Breastfeeding Mothers Group', url:'/classes/breastfeeding.html'};
	leftnav[2][4] = {text:'Infant, Child &amp; Adult CPR', url:'/classes/cpr.html'};
	leftnav[2][5] = {text:'Heartsaver First Aid/CPR', url:'/classes/heartsaver.html'};
	leftnav[2][6] = {text:'NICU CPR', url:'/classes/neonatal.html'};
leftnav[3] = {text:'For Parents', url:'/parents/'};
	leftnav[3][0] = {text:'For Parents', url:'/parents/'};
	leftnav[3][1] = {text:'New Parent Handbook', url:'/parents/handbook.html'};
	leftnav[3][2] = {text:'Services &amp; Support', url:'/parents/support.html'};
	leftnav[3][3] = {text:'Pre-Maternity Registration', url:'/parents/maternity.html'};
	leftnav[3][4] = {text:'Pain Care Bill of Rights', url:'/parents/rights.html'};
leftnav[4] = {text:'Take a Tour', url:'/tour/'};
	leftnav[4][0] = {text:'Take a Tour', url:'/tour/'};
	leftnav[4][1] = {text:'Admitting &amp; Triage', url:'/tour/admitting.html'};
	leftnav[4][2] = {text:'Labor &amp; Delivery', url:'/tour/delivery.html'};
	leftnav[4][3] = {text:'Cesarean Delivery', url:'/tour/cesarean.html'};
	leftnav[4][4] = {text:'Antepartum Unit', url:'/tour/observation.html'};
	leftnav[4][5] = {text:'Mother-Baby Unit', url:'/tour/postpartum.html'};
	leftnav[4][6] = {text:'High-Risk Neonatal Services', url:'/tour/highrisk.html'};
leftnav[5] = {text:'Volunteer', url:'/volunteer/'};
leftnav[6] = {text:'Contact Us', url:'/contact/'};
	leftnav[6][0] = {text:'Contact Us', url:'/contact/index.html'};
	leftnav[6][1] = {text:'Send an Email', url:'/contact/email.html'};
	leftnav[6][2] = {text:'Maps &amp; Directions', url:'/contact/directions.html'};	
	
/* DO NOT EDIT BELOW */

leftnavBuild( leftnav );

createMenuEnd();

/* DO NOT EDIT DIRECTLY ABOVE */

