/* 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:'Pelvic Pain Home', url:'/pelvicpaincenter/'};
leftnav[1] = {text:'New Patients', url:'/pelvicpaincenter/newpatients/'};
    leftnav[1][0] = {text:'Introduction Letter', url:'/pelvicpaincenter/newpatients/index.html'};
    leftnav[1][1] = {text:'Privacy Policy', url:'/pelvicpaincenter/newpatients/privacy.html'};
	leftnav[1][2] = {text:'Office Information', url:'/pelvicpaincenter/newpatients/information.html'};
	leftnav[1][3] = {text:'Labs and Imaging Sites', url:'/pelvicpaincenter/newpatients/labsimaging.html'};
	leftnav[1][4] = {text:'FAQ', url:'/pelvicpaincenter/newpatients/FAQ.html'};
	leftnav[1][5] = {text:'Links to Pelvic Pain Organizations', url:'/pelvicpaincenter/newpatients/orglinks.html'};
	
leftnav[2] = {text:'Maintaining Your Health', url:'/pelvicpaincenter/health/'};
	leftnav[2][0] = {text:'Definitions and Conditions', url:'/pelvicpaincenter/health/definicond.html'};
    leftnav[2][1] = {text:'Support Groups', url:'/pelvicpaincenter/health/support.html'};
	leftnav[2][2] = {text:'Breast Self Exam', url:'/pelvicpaincenter/health/breastexam.html'};
	leftnav[2][3] = {text:'Mammography at NYU', url:'http://mammo.med.nyu.edu/'};
    leftnav[2][4] = {text:'Instructions for Vulvodynia', url:'/pelvicpaincenter/health/vulvodynia.html'};
	leftnav[2][5] = {text:'Diet Instructions for IBS', url:'/pelvicpaincenter/health/ibsdiet.html'};

leftnav[3] = {text:'Commonly Prescribed Medications', url:'/sitetmpl_purple/section1/'};

leftnav[4] = {text:'Minimally Invasive Surgery', url:'/pelvicpaincenter/procedures/'};
	leftnav[4][0] = {text:'Minimally Invasive Procedures', url:'/pelvicpaincenter/procedures/procedures.html'};
	leftnav[4][1] = {text:'Conditions', url:'/pelvicpaincenter/procedures/conditions.html'};
	leftnav[4][2] = {text:'Preoperative Instructions', url:'/pelvicpaincenter/procedures/preopinst.html'};

leftnav[5] = {text:'Section 3', url:'#'};

leftnav[6] = {text:'Professionals', url:'/pelvicpaincenter/Professionals/'};
    leftnav[6][0] = {text:'Referring Providers', url:'/pelvicpaincenter/Professionals/referrals.html'};
	leftnav[6][1] = {text:'Researchers', url:'/pelvicpaincenter/Professionals/researchers.html'};

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

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