
			
/* 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:'/career_opps/index.html'};
leftnav[1] = {text:'Search Jobs', url:'https://campusconnection.nyumc.org/psc/hrrec/EMPLOYEE/HRMS/c/ROLE_APPLICANT.ER_APPLICANT_HOME.GBL?NAVSTACK=Clear'};
leftnav[2] = {text:'Search Nursing Jobs', url:'/nursing/co.htm'};
	
leftnav[3] = {text:'How to Apply', url:'/career_opps/apply/'};
	leftnav[3][0] = {text:'How to Apply Online', url:'/career_opps/apply/online.html'};
	leftnav[3][1] = {text:'Other Methods', url:'/career_opps/apply/other_methods.html'};
leftnav[4] = {text:'Benefits', url:'/career_opps/benefits/'};
leftnav[5] = {text:'FAQ', url:'/career_opps/faq/'};
leftnav[6] = {text:'Open Forums', url:'/career_opps/forums/'};
leftnav[7] = {text:'Contact', url:'/career_opps/contact/'};

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