/* DO NOT EDIT DIRECTLY BELOW */
createMenuTop();
/*
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'};
*/
var leftnav = new Array();
/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'Dept. Home', url:'/cnm/'};
leftnav[1] = {text:'About MEG', url:'/cnm/about/'};
leftnav[2] = {text:'Basic Research', url:'/cnm/research/'};
leftnav[3] = {text:'Clinical Applications', url:'/cnm/research/'};
leftnav[4] = {text:'Publications', url:'/cnm/publications/'};
	leftnav[4][0] = {text:'Journal papers', url:'/cnm/publications/index.html#journal_papers'};
	leftnav[4][1] = {text:'Recent abstracts', url:'/cnm/publications/index.html#abstracts'};
leftnav[5] = {text:'Resources', url:'http://www.med.nyu.edu/cnm/resources/'};
leftnav[6] = {text:'People', url:'/cnm/people/'};
leftnav[7] = {text:'Contact Us', url:'/contact/'};
/* DO NOT EDIT BELOW */
leftnavBuild( leftnav );
createMenuEnd();