/* 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:'Rusk Institute @ 17th Street Home', url:'/hjd/physmed/'};
leftnav[1] = {text:'Patient Services', url:'/hjd/physmed/patient_services/'};
	leftnav[1][0] = {text:'Overview', url:'/hjd/physmed/patient_services/overview.html'};
	leftnav[1][1] = {text:'Neurorehabilitation (Brain Injury Unit)', url:'/hjd/patient_services/programs_services/bip/index.html'};
	leftnav[1][2] = {text:'Orthopedic Rehabilitation Unit Services', url:'/hjd/physmed/patient_services/ortho.html'};
	leftnav[1][3] = {text: 'The Rehabilitation Team', url:'/hjd/physmed/patient_services/team.html'};
	leftnav[1][4] = {text:'2007 Outcomes Management Report ', url:'/hjd/physmed/patient_services/outcome07.html'};
	/*leftnav[1][4] = {text:'2006 Outcomes Management Report', url:'/hjd/physmed/patient_services/outcome.html'};*/
	leftnav[1][5] = {text:'Frequently Asked Questions', url:'/hjd/physmed/patient_services/faq.html'};
leftnav[2] = {text:'Physical &amp; Occupational Therapy', url:'/hjd/physmed/physocc/'};
         leftnav[2][0] = {text:'Acute Care', url:'/hjd/physmed/physocc/acute.html'};
         leftnav[2][1] = {text:'Outpatient Care', url:'/hjd/physmed/physocc/outpatient.html'};
         leftnav[2][2] = {text:'Pain', url:'/hjd/physmed/physocc/pain.html'};
		 leftnav[2][3] = {text:'NeuroRehabilitation', url:'/hjd/physmed/physocc/neurorehabilitation.html'};
		 leftnav[2][4] = {text:'OrthoRehabilitation', url:'/hjd/physmed/physocc/ortho.html'};
		 leftnav[2][5] = {text:'Sports', url:'/hjd/physmed/physocc/sports.html'};
		 leftnav[2][6] = {text:'Pediatric PT/OT', url:'/hjd/physmed/physocc/pediatric.html'};


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

