
			
/* 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:'SAHI Home', url:'/sahi/'};
leftnav[1] = {text:'About Us', url:'/sahi/aboutus/'};
	leftnav[1][0] = {text:'History and Mission', url:'/sahi/aboutus/history_mission.html'};
	leftnav[1][1] = {text:'Our Team', url:'/sahi/aboutus/people.html'};
	leftnav[1][2] = {text:'Community Advisory Board', url:'/sahi/aboutus/partners.html'};
	leftnav[1][3] = {text:'Funders', url:'/sahi/aboutus/funders.html'};
leftnav[2] = {text:'Ongoing Projects', url:'/sahi/current_initiatives/'};
	
	leftnav[2][0] = {text:'Stop Paan', url:'/sahi/current_initiatives/paan.html'};
	leftnav[2][1] = {text:'Tuberculosis Prevention', url:'/sahi/current_initiatives/tuberculosis.html'};
	leftnav[2][2] = {text:'Cardiovascular Disease', url:'/sahi/current_initiatives/cardiovascular_disease.html'};
	leftnav[2][3] = {text:'Community Health Needs Assessment', url:'/sahi/current_initiatives/community_health.html'};
	leftnav[2][4] = {text:'Culture and Language', url:'/sahi/current_initiatives/culture_language.html'};
	leftnav[2][5] = {text:'Increasing Health Access', url:'/sahi/current_initiatives/health_access.html'};
leftnav[3] = {text:'Make a Difference', url:'/sahi/difference/'};
leftnav[3][0] = {text:'Donate', url:'/sahi/difference/donate.html'};
leftnav[3][1] = {text:'Volunteer', url:'/sahi/difference/volunteer.html'};
leftnav[3][2] = {text:'Partner in a SAHI Event', url:'/sahi/difference/partner.html'};
leftnav[4] = {text:'Contact', url:'/sahi/contact/'};
	leftnav[4][0] = {text:'Our Offices', url:'/sahi/contact/offices.html'};
	leftnav[4][1] = {text:'Directions, Map, Parking', url:'/sahi/contact/directions.html'};

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