
			
/* 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:'/brl/'};
leftnav[1] = {text:'About UsSAS', url:'/brl/aboutus/'};
leftnav[2] = {text:'Faculty', url:'/brl/faculty/'};
leftnav[3] = {text:'Research', url:'/brl/research/'};
	leftnav[3][0] = {text:'Current Research', url:'/brl/research/current/'};
		leftnav[3][0][0] = {text:'Learning, Memory, Cognition', url:'/brl/research/current/learning.html'};
		leftnav[3][0][1] = {text:'Neuropharmacological Studies', url:'/brl/research/current/neuropharmacological.html'};
		leftnav[3][0][2] = {text:'Crack Cocaine Dependence', url:'/brl/research/current/cocaine.html'};
		leftnav[3][0][3] = {text:'Dementia: Cognitive Dysfunction', url:'/brl/research/current/elderly.html'};
		leftnav[3][0][4] = {text:'Psychiatric Numerical Taxonomy', url:'/brl/research/current/taxonomy.html'};
		leftnav[3][0][5] = {text:'QEEG-Based Cluster Analysis', url:'/brl/research/current/qeeg_cluster.html'};
		leftnav[3][0][6] = {text:'Theory Construction', url:'/brl/research/current/theory.html'};
		leftnav[3][0][7] = {text:'QEEG Guided Treatment of Coma/Minimal Consciousness', url:'/brl/research/current/qeeg_guided.html'};
		leftnav[3][0][8] = {text:'Innovation Treatment of Autistic Spectrum Disorders using QEEG', url:'/brl/research/current/qeeg_innovation.html'};
	leftnav[3][1] = {text:'Methods', url:'/brl/research/methods.html'};
	leftnav[3][2] = {text:'Funding', url:'/brl/research/funding.html'};
	leftnav[3][3] = {text:'Translational Technology Development', url:'/brl/research/technology/'};
		leftnav[3][3][0] = {text:'QEEG Database', url:'/brl/research/technology/qeeg_database.html'};
		leftnav[3][3][1] = {text:'Instrument Development', url:'/brl/research/technology/instruments.html'};
	leftnav[3][4] = {text:'Publications', url:'/brl/research/publications.html'};
	leftnav[3][5] = {text:'Ongoing Research Projects currently recruiting subjects', url:'/brl/research/ongoing.html'};
		leftnav[3][5][0] = {text:'Fetal Brain Monitor Study: Enrolling pregnant women in the last trimester of pregnancy:', url:'/brl/research/technology/preg1.html'};
		leftnav[3][5][1] = {text:'Raloxifene Study:  Enrolling women between the ages of 55-70 (Raloxifene Study):', url:'/brl/research/technology/preg2.html'};
	leftnav[3][6] = {text:'Clinical Services', url:'/brl/services/'};
		leftnav[3][6][0] = {text:'New Technology', url:'/brl/services/new_tech.html'};
leftnav[4] = {text:'Section3', url:'/brl/section3/'};
	leftnav[4][0] = {text:'Section3Sub1', url:'/brl/section3/sub1/'};
		leftnav[4][0][0] = {text:'page1', url:'/brl/section3/sub1/page1.html'};
		leftnav[4][0][1] = {text:'page2', url:'/brl/section3/sub1/page2.html'};
		leftnav[4][0][2] = {text:'page3', url:'/brl/section3/sub1/page3.html'};
	leftnav[4][1] = {text:'Section3Sub2', url:'/brl/section3/sub2/'};
	leftnav[4][2] = {text:'Section3Sub3', url:'/brl/section3/sub3/'};
	leftnav[4][3] = {text:'Section3Sub4', url:'/brl/section3/sub4/'};
	leftnav[4][4] = {text:'Section3Sub5', url:'/brl/section3/sub5/'};
leftnav[5] = {text:'Section4', url:'/brl/section4/'};
leftnav[6] = {text:'Section5', url:'/brl/section5/'};
leftnav[7] = {text:'Contact Us', url:'/brl/contact/'};
	leftnav[7][0] = {text:'Our Offices', url:'/brl/contact/offices.html'};
	leftnav[7][1] = {text:'Directions, Maps, Parking', url:'/brl/contact/directions.html'};

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