
			
/* 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:'/strokecenter/'};
leftnav[1] = {text:'About Us', url:'/strokecenter/about/'};
	leftnav[1][0] = {text:'First in NYC', url:'/strokecenter/about/about.html'};
	leftnav[1][1] = {text:'Our Mission', url:'/strokecenter/about/mission.html'};
leftnav[2] = {text:'Our Team', url:'/strokecenter/team/'};
	leftnav[2][0] = {text:'Stroke Team', url:'/strokecenter/team/team.html'};
	leftnav[2][1] = {text:'Departmental Faculty', url:'/strokecenter/team/faculty.html'};
leftnav[3] = {text:'About Stroke', url:'/strokecenter/aboutstroke/'};
	leftnav[3][0] = {text:'Types of Stroke', url:'/strokecenter/aboutstroke/types/'};
	leftnav[3][1] = {text:'Prevention', url:'/strokecenter/aboutstroke/prevention/'};
	leftnav[3][2] = {text:'Risk Factors', url:'/strokecenter/aboutstroke/risk/'};
    leftnav[3][3] = {text:'Symptoms', url:'/strokecenter/aboutstroke/symptoms/'};
    leftnav[3][4] = {text:'Diagnosis', url:'/strokecenter/aboutstroke/diagnosis/'};
    leftnav[3][5] = {text:'Facts', url:'/strokecenter/aboutstroke/facts.html'};

	leftnav[4] = {text:'Treatments', url:'/strokecenter/treatment/'};
		leftnav[4][0] = {text:'Stroke Therapy', url:'/strokecenter/treatment/treatment.html'};
		leftnav[4][1] = {text:'Lifestyle Changes', url:'/strokecenter/treatment/lifestyle.html'};
	    leftnav[4][2] = {text:'Medications', url:'/strokecenter/treatment/medications.html'};
		leftnav[4][3] = {text:'Surgery', url:'/strokecenter/treatment/surgery.html'};
		leftnav[4][4] = {text:'Other Treatments', url:'/strokecenter/treatment/others.html'};
leftnav[5] = {text:'Contact Us', url:'/strokecenter/contact/'};
	leftnav[5][0] = {text:'Our Offices', url:'/strokecenter/contact/offices.html'};
	leftnav[5][1] = {text:'Directions, Map, Parking', url:'/strokecenter/contact/directions.html'};
leftnav[6] = {text:'Rehabilitation', url:'/strokecenter/rehab/'};
	leftnav[6][0] = {text:'Rusk Stroke Rehab Program', url:'/strokecenter/rehab/rusk.html'};
	leftnav[6][1] = {text:'Effects of Stroke', url:'/strokecenter/rehab/effects.html'};
	leftnav[6][2] = {text:'Support a Survivor', url:'/strokecenter/rehab/support.html'};
	leftnav[6][3] = {text:'Recovery Process', url:'/strokecenter/rehab/recovery.html'};
	
	


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