/* 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:'Dept. Home', url:'/hjd/ms/'};
leftnav[1] = {text:'About Us', url:'/hjd/ms/about/'};
	//leftnav[1][0] = {text:'About Us', url:'/hjd/ms/about/'};
	//leftnav[1][1] = {text:'About Us 2', url:'/hjd/ms/about/'};
leftnav[2] = {text:'Faculty', url:'#'};
leftnav[3] = {text:'Programs and Education', url:'/hjd/ms/programs/'};
	leftnav[3][0] = {text:'MS Programs', url:'/hjd/ms/programs/programs.html'};
	leftnav[3][1] = {text:'MS Groups', url:'/hjd/ms/programs/groups.html'};
	leftnav[3][2] = {text:'Newsletter', url:'/hjd/ms/programs/newsletters.html'};
leftnav[4] = {text:'Section 2', url:'#'};
leftnav[5] = {text:'Section 3', url:'#'};
leftnav[6] = {text:'Section 4', url:'#'};
leftnav[7] = {text:'Contact Us', url:'#'};

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