
			
/* 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:'/interventionalrad/'};
leftnav[1] = {text:'Procedures', url:'/interventionalrad/procedures/'};
	leftnav[1][0] = {text:'Vascular Procedures', url:'/interventionalrad/procedures/vascularprocedures.html'};
	leftnav[1][1] = {text:'Interventional Oncology', url:'/interventionalrad/procedures/interventionalcancer.html'};
	leftnav[1][2] = {text:'Embolization for Uterine Fibroids', url:'/interventionalrad/procedures/uterinefibroids.html'};
	leftnav[1][3] = {text:'Vascular Malformations', url:'/interventionalrad/procedures/conmalformation.html'};
	leftnav[1][4] = {text:'Other Procedures', url:'/interventionalrad/procedures/others.html'};
leftnav[2] = {text:'Our Team', url:'/interventionalrad/physicians/'};
leftnav[3] = {text:'Clinical Trials', url:'/interventionalrad/clinicaltrials/'};
leftnav[4] = {text:'Other Resources', url:'/interventionalrad/resources.html'};
leftnav[5] = {text:'Contact', url:'/interventionalrad/contact.html'};

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