/* 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/to/link/'};

//     leftnav[0][0] = { text:'Link Text', url:'/path/to/link/'};

//         leftnav[0][0][0] = { text:'Link Text', url:'/path/to/link/'};

//

var leftnav = new Array();

/* DO NOT EDIT ABOVE */

leftnav[0] = {text:'Home', url:'/cec/'};
leftnav[1] = {text:'About Us', url:'/cec/about/'};
	leftnav[1][0] = {text:'Overview', url:'/cec/about/overview.html'};
	leftnav[1][1] = {text:'About Our Center', url:'/cec/about/center.html'};
	leftnav[1][2] = {text:'Faculty and Staff', url:'/cec/about/staff.html'};
leftnav[2] = {text:'Epilepsy and Seizures', url:'/cec/epilepsy_seizures/'};
	leftnav[2][0]= {text:'About Epilepsy &amp; Seizures', url:'/cec/epilepsy_seizures/about/'};
	leftnav[2][1] = {text:'Diagnosing Epilepsy', url:'/cec/diagnosing/'};
	leftnav[2][2] = {text:'Neurological Tests', url:'/cec/diagnosing/diagnostic/'};
	leftnav[2][3] = {text:'Children and Epilepsy', url:'/cec/epilepsy_seizures/children/'};
	leftnav[2][4] = {text:'Women and Epilepsy', url:'/cec/epilepsy_seizures/women'};
	leftnav[2][5] = {text:'Men and Epilepsy', url:'/cec/epilepsy_seizures/men/'};
	leftnav[2][6] = {text:'Seniors and Epilepsy', url:'/cec/epilepsy_seizures/seniors/'};
	leftnav[2][7] = {text:'Epilepsy and Developmental Disabilities', url:'/cec/epilepsy_seizures/disabilities/'};
	leftnav[2][8] = {text:'Treating Epilepsy', url:'/cec/epilepsy_seizures/treatment/'};
	leftnav[2][9] = {text:'Living with Epilepsy', url:'/cec/epilepsy_seizures/living/'};
leftnav[3] = {text:'NYU Programs &amp; Services', url:'/cec/programs/'};
	leftnav[3][0] = {text:'Testing Services', url:'/cec/epilepsy/'};
	leftnav[3][1] = {text:'Cognitive Neurology Program', url:'/cec/epilepsy/'};
	leftnav[3][2] = {text:'Memory Treatment Groups', url:'/cec/epilepsy/'};
	leftnav[3][3] = {text:'Tuberous Sclerosis Center', url:'/cec/epilepsy/'};
	leftnav[3][4] = {text:'Women Epilepsy Program', url:'/cec/epilepsy/'};
	leftnav[3][5] = {text:'Finding a Cure for Epilepsy and Seizures (FACES)', url:'/cec/epilepsy/'};
	leftnav[3][6] = {text:'International Patient Services', url:'/cec/epilepsy/'};
leftnav[4] = {text:'Academics &amp; Education', url:'/cec/programs/'};
	leftnav[4][0] = {text:'Fellowship Training Program', url:'/cec/epilepsy/'};
	leftnav[4][1] = {text:'Faculty', url:'/cec/epilepsy/'};
	leftnav[4][2] = {text:'Lectures', url:'/cec/epilepsy/'};
	leftnav[4][3] = {text:'CME Courses', url:'/cec/epilepsy/'};
	leftnav[4][4] = {text:'Podcasting', url:'/cec/epilepsy/'};
leftnav[5] = {text:'Research', url:'/cec/programs/'};
	leftnav[5][0] = {text:'Current Investigations', url:'/cec/epilepsy/'};
	leftnav[5][1] = {text:'Research Investigators', url:'/cec/epilepsy/'};
	leftnav[5][2] = {text:'Grants and Funding', url:'/cec/epilepsy/'};
	leftnav[5][3] = {text:'Shared Core Facilities', url:'/cec/epilepsy/'};
	leftnav[5][4] = {text:'Clinical Trials', url:'/cec/epilepsy/'};
	leftnav[5][5] = {text:'Articles and Publications', url:'/cec/epilepsy/'};

leftnav[6] = {text:'Contact Us', url:'/cec/contact/'};
	leftnav[6][0] = {text:'Important Numbers', url:'/cec/contact/numbers.html'};
	leftnav[6][1] = {text:'Appointments', url:'/cec/contact/appointments.html'};
	leftnav[6][2] = {text:'Prescriptions', url:'/cec/contact/prescriptions.html'};
	leftnav[6][3] = {text:'Referrals and Insurance', url:'/cec/contact/referrals.html'};
	leftnav[6][4] = {text:'Lab Results', url:'/cec/contact/lab.html'};
	
/* DO NOT EDIT BELOW */

leftnavBuild( leftnav );

createMenuEnd();

/* DO NOT EDIT DIRECTLY ABOVE */

