/* 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:'HJD Home', url:'/hjd/'};
leftnav[1] = {text:'About Us', url:'/hjd/pain/'};
leftnav[2] = {text:'Faculty', url:'/hjd/pain/faculty/'};
leftnav[3] = {text:'Patient Services', url:'/hjd/pain/patientservices/'};
	leftnav[3][0] = {text:'Types of Pain Treated', url:'/hjd/pain/patientservices/types.html'};
	leftnav[3][1] = {text:'Inpatient Pain Rehabilitation Program', url:'/hjd/pain/patientservices/inpatient.html'};
	leftnav[3][2] = {text:'Outpatient and Inpatient Advanced Pharmacological Treatments', url:'/hjd/pain/patientservices/outpatient.html'};
	leftnav[3][3] = {text:'Orthopaedic Surgical Services', url:'http://www.med.nyu.edu/orthosurgery/'};
	leftnav[3][4] = {text:'Diagnostic and Therapeutic Analgesic Procedures', url:'/hjd/pain/patientservices/diagnostic.html'};
	leftnav[3][5] = {text:'Complementary Health Care Services', url:'/hjd/pain/patientservices/complementary.html'};
	leftnav[3][6] = {text:'State-of-the-Art Diagnostic Imaging Services', url:'/hjd/radiology/'};
	leftnav[3][7] = {text:'Biofeedback and Self Hypnosis Training', url:'/hjd/pain/patientservices/complementary.html#bio'};
	leftnav[3][8] = {text:'Comprehensive Physical and Occupational Therapy Programs', url:'/hjd/pain/patientservices/comprehensive.html'};
	leftnav[3][9] = {text:'Acupuncture', url:'/hjd/pain/patientservices/acupuntcture.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();