
			
/* 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:'/nycfreeclinic/'};
leftnav[1] = {text:'About NYCFC', url:'/nycfreeclinic/about/'};
	leftnav[1][0] = {text:'Our Mission', url:'/nycfreeclinic/about/mission.html'};
	leftnav[1][1] = {text:'Need for Free Care', url:'/nycfreeclinic/about/free_care.html'};
	leftnav[1][2] = {text:'Partners', url:'/nycfreeclinic/about/partners.html'};
	leftnav[1][3] = {text:'History', url:'/nycfreeclinic/about/history.html'};
	leftnav[1][4] = {text:'Management Team', url:'/nycfreeclinic/about/management.html'};
leftnav[2] = {text:'Patients', url:'/nycfreeclinic/patients/'};
	leftnav[2][0] = {text:'Who is Eligible', url:'/nycfreeclinic/patients/eligibility.html'};
	leftnav[2][1] = {text:'Health Services', url:'/nycfreeclinic/patients/services.html'};
	leftnav[2][2] = {text:'Public Insurance Enrollment Services', url:'/nycfreeclinic/patients/enrollment.html'};
	leftnav[2][3] = {text:'Schedule an Appointment', url:'/nycfreeclinic/patients/appointments.html'};
	leftnav[2][4] = {text:'Patient FAQ', url:'/nycfreeclinic/patients/patient_faq.html'};
	leftnav[2][5] = {text:'Health Resources', url:'/nycfreeclinic/patients/health_resources.html'};
	leftnav[2][6] = {text:'Insurance Resources', url:'/nycfreeclinic/patients/insurance_resources.html'};
	leftnav[2][7] = {text:'Community Health Screenings', url:'/nycfreeclinic/patients/screenings.html'};
leftnav[3] = {text:'Volunteer', url:'/nycfreeclinic/volunteer/'};
	leftnav[3][0] = {text:'Healthcare Providers', url:'/nycfreeclinic/volunteer/providers.html'};
	leftnav[3][1] = {text:'1st-2nd Year Medical Students', url:'/nycfreeclinic/volunteer/1st-2nd_year_students.html'};
	leftnav[3][2] = {text:'3rd-4th Year Medical Students', url:'/nycfreeclinic/volunteer/3rd-4th_year_students.html'};
	leftnav[3][3] = {text:'Undergraduates', url:'/nycfreeclinic/volunteer/undergraduates.html'};
	leftnav[3][4] = {text:'Provider Volunteer FAQ', url:'/nycfreeclinic/volunteer/provider_faq.html'};
	leftnav[3][5] = {text:'Student Volunteer FAQ', url:'/nycfreeclinic/volunteer/student_faq.html'};
leftnav[4] = {text:'Support', url:'/nycfreeclinic/support/'};
	leftnav[4][0] = {text:'Donate', url:'/nycfreeclinic/support/donate.html'};
	leftnav[4][1] = {text:'Attend an Event', url:'/nycfreeclinic/support/events.html'};
	leftnav[4][2] = {text:'Non-monetary Donations', url:'/nycfreeclinic/support/nonmonetary.html'};
	leftnav[4][3] = {text:'Past Contributors', url:'/nycfreeclinic/support/contributors.html'};
leftnav[5] = {text:'News &amp; Media', url:'/nycfreeclinic/news/'};
	leftnav[5][0] = {text:'News', url:'/nycfreeclinic/news/news.html'};
	leftnav[5][1] = {text:'NYCFC Newsletter', url:'/nycfreeclinic/news/newsletter.html'};
	leftnav[5][2] = {text:'Annual Report', url:'/nycfreeclinic/news/annual_report.html'};
	leftnav[5][3] = {text:'Media Inquiries', url:'/nycfreeclinic/news/media_inquiries.html'};
leftnav[6] = {text:'Contact Us', url:'/nycfreeclinic/contact/'};
	leftnav[6][0] = {text:'Contact the NYCFC', url:'/nycfreeclinic/contact/contact.html'};
	leftnav[6][1] = {text:'Map &amp; Directions', url:'/nycfreeclinic/contact/directions.html'};


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