
			
/* 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:'/radiology/'};
leftnav[1] = {text:'Patient Services', url:'/radiology/patients/'};
	leftnav[1][0] = {text:'Scheduling - Locations and Hours', url:'/radiology/patients/scheduling/'};
	leftnav[1][1] = {text:'General Information', url:'/radiology/patients/general/'};
	leftnav[1][2] = {text:'Preparing for an Examination', url:'/radiology/patients/preparing/'};
	leftnav[1][3] = {text:'Patient Forms', url:'/radiology/patients/forms/'};
	leftnav[1][4] = {text:'Insurance', url:'/radiology/patients/insurance/'};
	leftnav[1][5] = {text:'Subspecialties', url:'/radiology/patients/subspecialties/'};
		leftnav[1][5][0] = {text:'Abdominal Imaging', url:'/radiology/patients/subspecialties/abdominal.html'};
		leftnav[1][5][1] = {text:'Breast Imaging', url:'/radiology/patients/subspecialties/breast.html'};
		leftnav[1][5][2] = {text:'Cardiac Imaging', url:'/radiology/patients/subspecialties/cardiac.html'};
		leftnav[1][5][3] = {text:'General Radiology', url:'/radiology/patients/subspecialties/general.html'};
		leftnav[1][5][4] = {text:'Musculoskeletal Radiology', url:'/radiology/patients/subspecialties/musculoskeletal.html'};
		leftnav[1][5][5] = {text:'Neuroradiology', url:'/radiology/patients/subspecialties/neuroradiology.html'};
		leftnav[1][5][6] = {text:'Nuclear Medicine', url:'/radiology/patients/subspecialties/nuclear.html'};
		leftnav[1][5][7] = {text:'Pediatric Radiology', url:'/radiology/patients/subspecialties/pediatric.html'};
		leftnav[1][5][8] = {text:'Thoracic Imaging', url:'/radiology/patients/subspecialties/thoracic.html'};
		leftnav[1][5][9] = {text:'Vascular Interventional Radiology', url:'/radiology/patients/subspecialties/vascular.html'};
		leftnav[1][5][10] = {text:'Women&#0146;s Imaging', url:'/radiology/patients/subspecialties/women.html'};
	leftnav[1][6] = {text:'Patient Feedback', url:'/radiology/patients/feedback/'};
leftnav[2] = {text:'Education', url:'/radiology_edu/'};
	leftnav[2][0] = {text:'Medical Students', url:'/radiology_edu/medstudents/'};
	leftnav[2][1] = {text:'Residency', url:'http://www.med.nyu.edu/radiology_edu/residency/'};
	leftnav[2][2] = {text:'Fellowship', url:'http://www.med.nyu.edu/radiology_edu/fellowship/'};
	leftnav[2][3] = {text:'Continuing Medical Education (CME)', url:'http://www.med.nyu.edu/radiology_edu/postgrad/'};
	leftnav[2][4] = {text:'Residents&#0146; Corner', url:'http://www.med.nyu.edu/radiology_edu/residents/'};
leftnav[3] = {text:'Research', url:'/radiology/research/'};
	leftnav[3][0] = {text:'Research Programs', url:'/radiology/research/programs/'};
		leftnav[3][0][0] = {text:'Cardiac Imaging', url:'/radiology/research/programs/cardiac.html'};
		leftnav[3][0][1] = {text:'Computer-Assisted Tomography', url:'/radiology/research/programs/computer.html'};
		leftnav[3][0][2] = {text:'Body and Vascular MRI', url:'/radiology/research/programs/body.html'};
		leftnav[3][0][3] = {text:'Functional Lung Imaging', url:'/radiology/research/programs/lung.html'};
		leftnav[3][0][4] = {text:'Image Analysis and Biomedical Modeling', url:'/radiology/research/programs/imageanalysis.html'};
		leftnav[3][0][5] = {text:'Molecular Imaging', url:'/radiology/research/programs/molecular.html'};
		leftnav[3][0][6] = {text:'Musculoskeletal Radiology', url:'/radiology/research/programs/musculoskeletal.html'};
		leftnav[3][0][7] = {text:'MR spectroscopy', url:'/radiology/research/programs/spectroscopy.html'};
		leftnav[3][0][8] = {text:'Neurological Imaging', url:'/radiology/research/programs/neurological.html'};
		leftnav[3][0][9] = {text:'Nuclear Medicine', url:'/radiology/research/programs/nuclear.html'};
		leftnav[3][0][10] = {text:'Virtual Colonoscopy', url:'/radiology/research/programs/vc.html'};
	/*leftnav[3][1] = {text:'Clinical Trials', url:'/radiology/research/clinicalTrials/'};*/
	leftnav[3][1] = {text:'Ongoing Research Protocols', url:'/radiology/research/protocols/'}
	leftnav[3][2] = {text:'Center for Biomedical Imaging', url:'/radiology/research/cbi/'};
	leftnav[3][3] = {text:'Research Facilities', url:'/radiology/research/facilities/'};
	leftnav[3][4] = {text:'Faculty and Staff', url:'/radiology/research/faculty/'};
	/*leftnav[3][6] = {text:'Research Forms and Info', url:'/radiology/research/forms/'};*/
	leftnav[3][5] = {text:'News', url:'/radiology/research/news/'};
leftnav[4] = {text:'Faculty', url:'/radiology/faculty.html'};
leftnav[5] = {text:'News', url:'/radiology/news/'};
leftnav[6] = {text:'Contact', url:'/radiology/contact.html'};
/* DO NOT EDIT BELOW */
leftnavBuild( leftnav );
createMenuEnd();