
			
/* 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:'/'};
leftnav[1] = {text:'Administrative Fellowship', url:'/administrative_fellowship/'};
	leftnav[1][0] = {text:'About the Fellowship', url:'/administrative_fellowship/aboutus/'};
		leftnav[1][0][0] = {text:'Overview', url:'/administrative_fellowship/aboutus/overview.html'};
		leftnav[1][0][1] = {text:'Structure', url:'/administrative_fellowship/aboutus/structure.html'};
	leftnav[1][1] = {text:'How to Apply', url:'/administrative_fellowship/application/'};
	leftnav[1][2] = {text:'Fellows', url:'/administrative_fellowship/fellows/'};
	leftnav[1][3] = {text:'Around Town', url:'/administrative_fellowship/newyorkcity/'};
		leftnav[1][3][0] = {text:'Where to Stay', url:'/administrative_fellowship/newyorkcity/accommodations.html'};
	leftnav[1][4] = {text:'Contact Us', url:'/administrative_fellowship/contact/'};
		leftnav[1][4][0] = {text:'Important Numbers', url:'/administrative_fellowship/contact/numbers.html'};
		leftnav[1][4][1] = {text:'Directions and Maps', url:'/administrative_fellowship/contact/directions.html'};
		leftnav[1][4][2] = {text:'Parking', url:'/administrative_fellowship/contact/parking.html'};

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