/* 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:'/sacu/'};
leftnav[1] = {text:'Faculty', url:'/sacu/faculty/'}
	leftnav[1][0] = {text:'Find A Doctor', url:'http://findadoctor.med.nyu.edu/'}
	
leftnav[2] = {text:'About Us', url:'/sacu/aboutus/'};
    leftnav[2][0] = {text:'History of Dermatology Unit', url:'/sacu/aboutus/history.html'}
   	leftnav[2][1] = {text:'Scope of Services Offered', url:'/sacu/aboutus/services.html'}
	leftnav[2][2] = {text:'Derm Faculty and Residents', url:'/sacu/aboutus/derm.html'}
	
leftnav[3] = {text:'Clinical Sessions', url:'/sacu/clinics/'};
	leftnav[3][0] = {text:'General Dermatology', url:'/sacu/clinics/general.html'};
	leftnav[3][1] = {text:'Pediatric Dermatology', url:'/sacu/clinics/pediatric.html'};
	leftnav[3][2] = {text:'Connective Tissue', url:'/sacu/clinics/connective.html'};
	leftnav[3][3] = {text:'Psoriasis and Psoriatic Arthritis Center', url:'/sacu/clinics/psoriasis.html'};
	leftnav[3][4] = {text:'Leg Ulcer', url:'/sacu/clinics/leg_ulcer.html'};
	leftnav[3][5] = {text:'Contact Dermatitis', url:'/sacu/clinics/dermatitis.html'};
	leftnav[3][6] = {text:'Photomedicine', url:'/sacu/clinics/photomedicine.html'};
	leftnav[3][7] = {text:'Surgery', url:'/sacu/clinics/surgery.html'};
	leftnav[3][8] = {text:'Lymphoma', url:'/sacu/clinics/lymphoma.html'};
	leftnav[3][9] = {text:'Cosmetic Services', url:'/sacu/clinics/cosmetic.html'};
	leftnav[3][10] = {text:'Pigmented Lesion Section', url:'/sacu/clinics/pigmented.html'};
	leftnav[3][11] = {text:'Complex Medical Dermatology', url:'/sacu/clinics/complex.html'};
	
leftnav[4] = {text:'Patient Information', url:'/sacu/procedural/'};
   leftnav[4][0] = {text:'Scheduling', url:'/sacu/procedural/scheduling.html'};
   leftnav[4][1] = {text:'Directions', url:'/sacu/procedural/directions.html'};
   leftnav[4][2] = {text:'Insurance Information', url:'/sacu/procedural/insurance_info.html'};
   leftnav[4][3] = {text:'Questions and Answer Section', url:'/sacu/procedural/qandaform.html'};
   
leftnav[5] = {text:'News', url:'/sacu/news/'};
    leftnav[5][0] = {text:'Introduction of New Biologicals and Treatments', url:'/sacu/news/treatmeats.html'};
	leftnav[5][1] = {text:'Screening Information', url:'/sacu/news/screening.html'};
leftnav[6] = {text:'Links', url:'/sacu/links/'};

leftnav[7] = {text:'Contact Us', url:'#'};

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