/* 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:'Overview', url:'/hjd/harkness/overview/'};
    leftnav[0][0] = {text:'Mission Statement', url:'/hjd/harkness/overview/mission.html'};
	leftnav[0][1] = {text:'Facilities', url:'/hjd/harkness/overview/facilities.html'};
leftnav[1] = {text:'Faculty', url:'/hjd/harkness/faculty/'};
    leftnav[1][0] = {text:'Faculty', url:'/hjd/harkness/faculty/'};
	leftnav[1][1] = {text:'Physical Therapy Staff', url:'/hjd/harkness/faculty/index.html#pt'};
leftnav[2] = {text:'Clinical Services', url:'/hjd/harkness/clinicalservices/'};
	leftnav[2][0] = {text:'Orthopaedic Services', url:'/hjd/harkness/clinicalservices/orthopaedic.html'};
	leftnav[2][1] = {text:'Physical Therapy', url:'/hjd/harkness/clinicalservices/physical.html'};
	leftnav[2][2] = {text:'Injury Prevention', url:'/hjd/harkness/clinicalservices/injury.html'};
	leftnav[2][3] = {text:'Referrals (Orthopaedic, Non-Orthopaedic)', url:'/hjd/harkness/clinicalservices/referrals.html'};
leftnav[3] = {text:'Research', url:'/hjd/harkness/research/'};
	//leftnav[3][0] = {text:'Section 1 - Sub A - Level 2', url:'/hjd/harkness/section1/level2/'};
	//leftnav[3][1] = {text:'Section 1- Sub A - Level 3', url:'/hjd/harkness/section1/level2/level3/'};
leftnav[4] = {text:'Educational Programs', url:'/hjd/harkness/edu_programs/'};
	leftnav[4][0] = {text:'Dance Community', url:'/hjd/harkness/edu_programs/dance_comm.html'};
	leftnav[4][1] = {text:'Medical/Allied Healthcare Professionals', url:'/hjd/harkness/edu_programs/pro.html'};
	leftnav[4][2] = {text:'College Students', url:'/hjd/harkness/edu_programs/college.html'};
leftnav[5] = {text:'For Patients', url:'/hjd/harkness/patients/'};
	leftnav[5][0] = {text:'Financial Assistance', url:'/hjd/harkness/patients/finance.html'};
	leftnav[5][1] = {text:'Forms', url:'/hjd/harkness/patients/forms.html'};
	leftnav[5][2] = {text:'Common Dance Injuries', url:'/hjd/harkness/patients/injuries/'}
		leftnav[5][2][0] = {text:'Foot/Ankle', url:'/hjd/harkness/patients/injuries/foot.html'}
		leftnav[5][2][1] = {text:'Knee', url:'/hjd/harkness/patients/injuries/knee.html'}
		leftnav[5][2][2] = {text:'Hip', url:'/hjd/harkness/patients/injuries/hip.html'}
		leftnav[5][2][3] = {text:'Spine', url:'/hjd/harkness/patients/injuries/spine.html'}
		leftnav[5][2][4] = {text:'Shoulder', url:'/hjd/harkness/patients/injuries/shoulder.html'}
		leftnav[5][2][5] = {text:'Elbow/Wrist/Hand', url:'/hjd/harkness/patients/injuries/wrist.html'}
leftnav[6] = {text:'For Students', url:'/hjd/harkness/students/'};
	leftnav[6][0] = {text:'Dance Medicine and Science as a Career', url:'/hjd/harkness/students/career.html'};
	leftnav[6][1] = {text:'Resources', url:'/hjd/harkness/students/resources.html'};
	leftnav[6][2] = {text:'Healthcare Clinical Learning Programs', url:'/hjd/harkness/students/clinical_learn.html'}
leftnav[7] = {text:'For Professionals', url:'/hjd/harkness/professionals/'};

/* DO NOT EDIT BELOW */
leftnavBuild( leftnav );
createMenuEnd();