//		<script>

			/*** 
			This is the menu creation code - place it right after you body tag
			Feel free to add this to a stand-alone js file and link it to your page.
			**/
			
			//Menu object creation
			oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname
			
			oCMenu.frames = 0
			
			//Menu properties   
			//oCMenu.pxBetween=30
			oCMenu.pxBetween=0
			//oCMenu.fromLeft=20 
			oCMenu.fromLeft=0 
			//oCMenu.fromTop=0   
			oCMenu.fromTop=58   
			oCMenu.rows=1 
			oCMenu.menuPlacement="center"

			oCMenu.offlineRoot="" 
			oCMenu.onlineRoot="" 
			oCMenu.resizeCheck=1 
			oCMenu.wait=700 
			oCMenu.fillImg="cm_fill.gif"
			oCMenu.zIndex=5
			
			//Background bar properties
			oCMenu.useBar=0
			oCMenu.barWidth="100%"
			oCMenu.barHeight="menu" 
			oCMenu.barClass="clBar"
			oCMenu.barX=0 
			oCMenu.barY=58
			oCMenu.barBorderX=0
			oCMenu.barBorderY=0
			oCMenu.barBorderClass=""
			
			//Level properties - ALL properties have to be spesified in level 0
			oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
			oCMenu.level[0].width=120
			oCMenu.level[0].height=19 
			oCMenu.level[0].regClass="clLevel0"
			oCMenu.level[0].overClass="clLevel0over"
			oCMenu.level[0].borderX=0
			oCMenu.level[0].borderY=0
			oCMenu.level[0].borderClass="clLevel0border"
			oCMenu.level[0].offsetX=0
			oCMenu.level[0].offsetY=0
			oCMenu.level[0].rows=0
			oCMenu.level[0].arrow=0
			oCMenu.level[0].arrowWidth=0
			oCMenu.level[0].arrowHeight=0
			oCMenu.level[0].align="bottom"
			
			//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
			oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
			// oCMenu.level[1].width=oCMenu.level[0].width-2
			oCMenu.level[1].width=155
			oCMenu.level[1].height=20
			oCMenu.level[1].regClass="clLevel1"
			oCMenu.level[1].overClass="clLevel1over"
			oCMenu.level[1].borderX=1
			oCMenu.level[1].borderY=1
			oCMenu.level[1].align="right" 
			oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+30
			oCMenu.level[1].offsetY=0
			oCMenu.level[1].borderClass="clLevel1border"
			
			
			//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
			oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
			oCMenu.level[2].width=oCMenu.level[1].width-5
			oCMenu.level[2].height=19
			oCMenu.level[2].offsetX=-(oCMenu.level[1].width-2)/2+25
			oCMenu.level[2].offsetY=0
			oCMenu.level[2].regClass="clLevel2"
			oCMenu.level[2].overClass="clLevel2over"
			oCMenu.level[2].borderClass="clLevel2border"
			
			
			/******************************************
			Menu item creation:
			myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
			*************************************/
			// oCMenu.makeMenu('top0','','&nbsp;About','/about/head_welc.asp','')
			// below is above menu item using images
			oCMenu.makeMenu('top0','','','/about/head_welc.asp','',163,19,'/images/common/top_menu_about_off.gif','/images/common/top_menu_about_on.gif','','',"bottom")
				oCMenu.makeMenu('sub00','top0','Campus Map','/about/map.asp')
				oCMenu.makeMenu('sub02','top0','Contact Information','/about/contact.asp')
					oCMenu.makeMenu('sub021','sub02','Media Relations Contacts','/about/media_relations_contacts.asp')
				oCMenu.makeMenu('sub03','top0','Directions to Campus','/about/directions.asp')
					oCMenu.makeMenu('sub031','sub03','By Air','/about/directions/air.asp')
					oCMenu.makeMenu('sub032','sub03','By Auto','/about/directions/auto.asp')
					oCMenu.makeMenu('sub033','sub03','By Bus','/about/directions/bus.asp')
					oCMenu.makeMenu('sub034','sub03','By Train','/about/directions/rail.asp')
				oCMenu.makeMenu('sub04','top0','Employment','/about/employment/employment.asp')
					oCMenu.makeMenu('sub041','sub04','Benefits','/about/employment/benefits.asp')
					oCMenu.makeMenu('sub042','sub04','Contact','/about/employment/benefits-contact.asp')
				oCMenu.makeMenu('sub05','top0','Head Master&rsquo;s Welcome','/about/head_welc.asp')
				oCMenu.makeMenu('sub06','top0','The Lawrentian','/about/the_lawrentian/index.asp')
					oCMenu.makeMenu('sub062','sub06','Letter to the Editor','mailto:mallegra@lawrenceville.org?subject=Letter%20to%20the%20Lawrentian%20editor')
					oCMenu.makeMenu('sub063','sub06','View the Archives','/about/the_lawrentian/archives.asp')
				oCMenu.makeMenu('sub07','top0','Location','/about/location/overview.asp')
					oCMenu.makeMenu('sub071','sub07','Local Accommodations','/about/location/accom.asp')
					oCMenu.makeMenu('sub072','sub07','Transportation','/about/location/transport.asp')
					oCMenu.makeMenu('sub073','sub07','Main Street, Lawrenceville','http://www.lawrencevillemainstreet.com','_blank')
					oCMenu.makeMenu('sub074','sub07','The Princeton Area','http://www.princeton.edu/main/visiting/region/','_blank')
				oCMenu.makeMenu('sub075','top0','School History','/about/tour/history.asp')
					oCMenu.makeMenu('sub0751','sub075','A Day in the Life','/about/tour/day.asp')
					oCMenu.makeMenu('sub0752','sub075','The Harkness Table','/about/tour/harkness.asp')
					oCMenu.makeMenu('sub0753','sub075','The House System','/about/tour/house.asp')
					oCMenu.makeMenu('sub0754','sub075','Our Mission','/about/mission_statement.asp')
					oCMenu.makeMenu('sub0755','sub075','Video Tour','','',150,19,'','','','','','','','window.open("/media/video_tour/index.html","","width=640,height=480")')
				oCMenu.makeMenu('sub08','top0','Site Search','/about/searchresult.asp')
				oCMenu.makeMenu('sub09','top0','What&rsquo;s New','/about/news/news.asp')
					oCMenu.makeMenu('sub090','sub09','Announcements','/about/news/announcements.asp')
					oCMenu.makeMenu('sub092','sub09','Announcements Archive','/about/news/announcements_archive.asp')
					oCMenu.makeMenu('sub094','sub09','News','/about/news/news.asp')
					oCMenu.makeMenu('sub096','sub09','News Archive','/about/news/news_archive.asp')

			// oCMenu.makeMenu('top1','','&nbsp;Admission','')
			oCMenu.makeMenu('top1','','','/admissions/philosophy.asp','',121,19,'/images/common/top_menu_admission_off.gif','/images/common/top_menu_admission_on.gif','','',"bottom")
				oCMenu.makeMenu('sub102','top1','Admission Philosophy','/admissions/philosophy.asp')
				oCMenu.makeMenu('sub104','top1','Admission Process','/admissions/process.asp')
				oCMenu.makeMenu('sub106','top1','Admission Staff','/admissions/staff.asp')
				oCMenu.makeMenu('sub108','top1','Apply On-line','/admissions/apply_on-line.asp')
				oCMenu.makeMenu('sub110','top1','Inquire Online','/admissions/inquire_on-line.asp')
				oCMenu.makeMenu('sub111','top1','International Applications','/admissions/international.asp')
				oCMenu.makeMenu('sub112','top1','National Data','/admissions/national_data.asp')
				oCMenu.makeMenu('sub116','top1','Travel Schedule','/admissions/travel.asp')
					oCMenu.makeMenu('sub11602','sub116','Revisit Days','/admissions/travel/revisit.asp')
				oCMenu.makeMenu('sub118','top1','Tuition/Financial Aid','/admissions/tuition.asp')
					oCMenu.makeMenu('sub11802','sub118','Applying for Aid','/admissions/tuition/applying.asp')
					oCMenu.makeMenu('sub11804','sub118','Financial Aid Application<br />Calendar','/admissions/tuition/appl-calendar.asp','',150,32)
					oCMenu.makeMenu('sub11806','sub118','Financial Aid Calculation','/admissions/tuition/aid-calculation.asp')
					oCMenu.makeMenu('sub11807','sub118','Financial Aid Policy','/admissions/tuition/aid-policy.asp')
					oCMenu.makeMenu('sub11808','sub118','Merit Scholarships','/admissions/tuition/merit.asp')
					oCMenu.makeMenu('sub11810','sub118','Tuition Details','/admissions/tuition/tuition-details.asp')
					oCMenu.makeMenu('sub11812','sub118','Tuition Payment Plans','/admissions/tuition/payment-plans.asp')
				oCMenu.makeMenu('sub120','top1','Video Tour','','',155,20,'','','','','','','','window.open("/media/video_tour/index.html","","width=640,height=480")')

			// oCMenu.makeMenu('top2','','&nbsp;Alumni','http://www2.lawrenceville.org/alumni/welcome/')
			oCMenu.makeMenu('top2','','','http://www2.lawrenceville.org/alumni/welcome/','',120,19,'/images/common/top_menu_alumni_off.gif','/images/common/top_menu_alumni_on.gif','','',"bottom")
				oCMenu.makeMenu('sub201','top2','News &amp; Notes','http://www2.lawrenceville.org/alumni/welcome/')
					oCMenu.makeMenu('sub2010','sub201','Our Mission','http://www2.lawrenceville.org/alumni/welcome/mission.asp')
				oCMenu.makeMenu('sub202','top2','The Lawrentian','/about/the_lawrentian/index.asp')
					oCMenu.makeMenu('sub022','sub202','Letter to the Editor','mailto:mallegra@lawrenceville.org?subject=Letter%20to%20the%20Lawrentian%20editor')
					oCMenu.makeMenu('sub023','sub202','View the Archives','/about/the_lawrentian/archives.asp')
				oCMenu.makeMenu('sub203','top2','Alumni Online<br />Community','https://www2.lawrenceville.org/alumni/community/','',155,35)
				oCMenu.makeMenu('sub204','top2','Alumni Association','http://www2.lawrenceville.org/alumni/association/')
					oCMenu.makeMenu('sub2041','sub204','Constitution and<br />By-Laws','http://www2.lawrenceville.org/alumni/association/laws.asp','',150,32)
					oCMenu.makeMenu('sub2042','sub204','Volunteer Handbook','http://www2.lawrenceville.org/alumni/association/handbook.asp')
					oCMenu.makeMenu('sub2043','sub204','Recognition and Awards','http://www2.lawrenceville.org/alumni/association/recognition.asp')
					oCMenu.makeMenu('sub2044','sub204','Committees','http://www2.lawrenceville.org/alumni/association/committees.asp')
				oCMenu.makeMenu('sub205','top2','Regional Clubs','http://www2.lawrenceville.org/alumni/regional/')
					oCMenu.makeMenu('sub2051','sub205','Upcoming Events','http://www2.lawrenceville.org/alumni/regional/events.asp')
					oCMenu.makeMenu('sub2052','sub205','Starting a Club','http://www2.lawrenceville.org/alumni/regional/start.asp')
					oCMenu.makeMenu('sub2053','sub205','Planning an Event','http://www2.lawrenceville.org/alumni/regional/planning.asp')
					oCMenu.makeMenu('sub2054','sub205','Event Suggestions','http://www2.lawrenceville.org/alumni/regional/suggestions.asp')
					oCMenu.makeMenu('sub2055','sub205','How We Can Help','http://www2.lawrenceville.org/alumni/regional/help.asp')
				oCMenu.makeMenu('sub206','top2','Affinity Groups','http://www2.lawrenceville.org/alumni/young/')
				oCMenu.makeMenu('sub207','top2','Volunteer Resources','http://www2.lawrenceville.org/alumni/volunteer/welcome.asp')
					oCMenu.makeMenu('sub2071','sub207','Class Secretaries','http://www2.lawrenceville.org/alumni/volunteer/sec.asp')
					oCMenu.makeMenu('sub2072','sub207','Class Agents','/alumni/secretaries/agent-login.asp')
					oCMenu.makeMenu('sub2073','sub207','Useful Links','http://www2.lawrenceville.org/alumni/volunteer/links.asp')
				oCMenu.makeMenu('sub208','top2','Events','http://www2.lawrenceville.org/alumni/events/')
					oCMenu.makeMenu('sub2080','sub208','Alumni Calendar','http://www2.lawrenceville.org/alumni/events/')
					oCMenu.makeMenu('sub2083','sub208','Photo Galleries','http://www2.lawrenceville.org/alumni/events/gallery.asp')
					oCMenu.makeMenu('sub2081','sub208','Alumni Weekend','http://www2.lawrenceville.org/alumni/events/reunion.asp')
					oCMenu.makeMenu('sub2082','sub208','Homecoming','http://www2.lawrenceville.org/alumni/events/homecoming.asp')
				oCMenu.makeMenu('sub209','top2','The Bicentennial<br />Campaign','http://www2.lawrenceville.org/alumni/makegift/','',155,35)
					oCMenu.makeMenu('sub2091','sub209','Campaign Focus','http://www2.lawrenceville.org/alumni/makegift/opportunities.asp')
					oCMenu.makeMenu('sub2092','sub209','Endowment Opportunities','http://www2.lawrenceville.org/alumni/makegift/funds.asp')
					oCMenu.makeMenu('sub2093','sub209','Contact Us','http://www2.lawrenceville.org/alumni/makegift/contact.asp')
				oCMenu.makeMenu('sub210','top2','The Lawrenceville Fund','http://www2.lawrenceville.org/alumni/fund/')
					oCMenu.makeMenu('sub2101','sub210','What&rsquo;s New','http://www2.lawrenceville.org/alumni/fund/')
					oCMenu.makeMenu('sub2102','sub210','Giving Online','https://www2.lawrenceville.org/alumni/fund/giving.asp')
					oCMenu.makeMenu('sub2103','sub210','Other Ways of Giving','http://www2.lawrenceville.org/alumni/fund/other.asp')
					oCMenu.makeMenu('sub2104','sub210','Attend a Phonathon','http://www2.lawrenceville.org/alumni/fund/phonathon.asp')
					oCMenu.makeMenu('sub2105','sub210','Marketable Securities','http://www2.lawrenceville.org/alumni/fund/securities.asp')
					oCMenu.makeMenu('sub2106','sub210','Contact Us','http://www2.lawrenceville.org/alumni/fund/contact.asp')
				oCMenu.makeMenu('sub211','top2','Planned Giving','http://www.lawrenceville.gift-planning.org/')
				oCMenu.makeMenu('sub212','top2','Meet the Office','http://www2.lawrenceville.org/alumni/meet_office/')
					oCMenu.makeMenu('sub2120','sub212','Contact Us','http://www2.lawrenceville.org/alumni/welcome/contact.asp')
//
			
			// oCMenu.makeMenu('top3','','&nbsp;On Campus','/on_campus/news/houseletter.asp')
			oCMenu.makeMenu('top3','','','/on_campus/news/news.asp','',120,19,'/images/common/top_menu_on_campus_off.gif','/images/common/top_menu_on_campus_on.gif','','',"bottom")
				oCMenu.makeMenu('sub302','top3','Academics','/on_campus/academics/curriculum.asp')
					oCMenu.makeMenu('sub30202','sub302','Academic Departments','/on_campus/academics/depts.asp')
					oCMenu.makeMenu('sub30204','sub302','Academic Opportunities','/on_campus/academics/oppor.asp')
					oCMenu.makeMenu('sub30206','sub302','Course Catalog','/on_campus/academics/catalog.asp')
					oCMenu.makeMenu('sub30208','sub302','Curriculum','/on_campus/academics/curriculum.asp')
					oCMenu.makeMenu('sub30209','sub302','International Programs','/on_campus/academics/international/overview.asp')
					oCMenu.makeMenu('sub30210','sub302','Registrar&rsquo;s Office','/on_campus/academics/registrar.asp')
					oCMenu.makeMenu('sub30212','sub302','Summer Programs','/on_campus/academics/summer/overview.asp')
				oCMenu.makeMenu('sub304','top3','Athletics','/on_campus/athletics/main.asp')
					oCMenu.makeMenu('sub30402','sub304','Athletic Training<br />Department','/on_campus/athletics/athletic-training/index.asp','',150,32)
					oCMenu.makeMenu('sub30404','sub304','Alumni Hall of Fame','/on_campus/athletics/hof.asp')
					oCMenu.makeMenu('sub30406','sub304','Big Red Race','/on_campus/athletics/bigredrace/index.asp')
					oCMenu.makeMenu('sub30408','sub304','Driving Directions','/on_campus/athletics/drive.asp')
					oCMenu.makeMenu('sub30410','sub304','Facilities','/on_campus/athletics/facs.asp')
					oCMenu.makeMenu('sub30412','sub304','Mission','/on_campus/athletics/mission.asp')
					oCMenu.makeMenu('sub30414','sub304','Staff','/on_campus/athletics/staff.asp')
					oCMenu.makeMenu('sub30416','sub304','Today&rsquo;s Schedule','/on_campus/athletics/schedule.asp')
					oCMenu.makeMenu('sub30418','sub304','Tournaments','/on_campus/athletics/tournaments.asp')
				oCMenu.makeMenu('sub306','top3','The Arts','/on_campus/arts/overview.asp')
					oCMenu.makeMenu('sub30602','sub306','Music','/on_campus/arts/music.asp')
					oCMenu.makeMenu('sub30604','sub306','Theater and Dance','/on_campus/arts/drama.asp')
					oCMenu.makeMenu('sub30606','sub306','Visual Arts','/on_campus/arts/visual.asp')
				oCMenu.makeMenu('sub308','top3','Blackboard','http://blackboard.lawrenceville.org/','_blank')
				oCMenu.makeMenu('sub310','top3','Bunn Library','/on_campus/library/library.asp')
					oCMenu.makeMenu('sub31002','sub310','Archives','/on_campus/library/archives.asp')
					oCMenu.makeMenu('sub31004','sub310','Copyright Policy','/on_campus/library/copyright_policy.asp')
					oCMenu.makeMenu('sub31006','sub310','Online Catalog','http://lvlibsvr01.lawrenceville.org','_blank')
					oCMenu.makeMenu('sub31008','sub310','Research Databases','/on_campus/library/research-databases-alpha.asp')
					oCMenu.makeMenu('sub31010','sub310','Research Tools','/on_campus/library/research-tools.asp')
					oCMenu.makeMenu('sub31012','sub310','Services','/on_campus/library/services.asp')
				oCMenu.makeMenu('sub312','top3','Calendar','/on_campus/news/calendar.asp')
				oCMenu.makeMenu('sub314','top3','College Counseling','/on_campus/college/overview.asp')
					oCMenu.makeMenu('sub31402','sub314','Matriculation','/on_campus/college/matric.asp')
					oCMenu.makeMenu('sub31404','sub314','Staff','/on_campus/college/staff.asp')
				oCMenu.makeMenu('sub316','top3','Faculty/Administration','/on_campus/fac_adm/head.asp')
					oCMenu.makeMenu('sub31602','sub316','Academic Dean','/on_campus/fac_adm/academic_dean.asp')
					oCMenu.makeMenu('sub31604','sub316','Dean of Faculty','/on_campus/fac_adm/dean_faculty.asp')
					oCMenu.makeMenu('sub31606','sub316','Dean of Residential Life','/on_campus/fac_adm/dean_residential_life.asp')
					oCMenu.makeMenu('sub31608','sub316','Dean of Students','/on_campus/fac_adm/dean_students.asp')
					oCMenu.makeMenu('sub31610','sub316','Faculty','/on_campus/fac_adm/faculty_list.asp')
					oCMenu.makeMenu('sub31612','sub316','Head Master','/on_campus/fac_adm/head.asp')
					oCMenu.makeMenu('sub31614','sub316','Senior Staff','/on_campus/fac_adm/senior_staff.asp')
				oCMenu.makeMenu('sub318','top3','Green Campus Initiative','/on_campus/fac_adm/green-campus/overview.asp')
					oCMenu.makeMenu('sub31802','sub318','Contact Information','/on_campus/fac_adm/green-campus/contact.asp')
					oCMenu.makeMenu('sub31804','sub318','Green Building, Energy Efficiency, &amp; Renewables','/on_campus/fac_adm/green-campus/build-energy-renew.asp','',150,32)
					oCMenu.makeMenu('sub31806','sub318','Land &amp; Water<br />Management','/on_campus/fac_adm/green-campus/land-water-mng.asp','',150,32)
					oCMenu.makeMenu('sub31808','sub318','Procurement &amp; Waste<br />Streams','/on_campus/fac_adm/green-campus/procure-waste.asp','',150,32)
				// oCMenu.makeMenu('sub320','top3','The Houseletter','/on_campus/news/houseletter.asp')
				oCMenu.makeMenu('sub322','top3','Infirmary','/on_campus/infirmary/index.asp')
					oCMenu.makeMenu('sub32202','sub322','Contact Information','/on_campus/infirmary/contact_info.asp')
					oCMenu.makeMenu('sub32204','sub322','History','/on_campus/infirmary/history.asp')
					oCMenu.makeMenu('sub32206','sub322','Medical Services','/on_campus/infirmary/medical_services.asp')
					oCMenu.makeMenu('sub32208','sub322','Policies','/on_campus/infirmary/policies.asp')
					oCMenu.makeMenu('sub32210','sub322','Staff','/on_campus/infirmary/staff.asp')
					oCMenu.makeMenu('sub32212','sub322','Wellness &amp; Prevention','/on_campus/infirmary/wellness_prevention.asp')
				oCMenu.makeMenu('sub324','top3','Jigger Shop','/on_campus/jiggershop.asp')
				oCMenu.makeMenu('sub326','top3','The Lawrence','/on_campus/news/thelawrence.asp')
				oCMenu.makeMenu('sub328','top3','News and Events','/on_campus/news/news.asp')
				oCMenu.makeMenu('sub330','top3','Student Life','/on_campus/life/over.asp')
					oCMenu.makeMenu('sub33002','sub330','Chapel','/on_campus/life/chapel.asp')
					oCMenu.makeMenu('sub33004','sub330','Clubs &amp; Organizations','/on_campus/life/clubs.asp')
					oCMenu.makeMenu('sub33006','sub330','Community &amp; School <br />Meetings','/on_campus/life/meetings.asp','',150,32)
					oCMenu.makeMenu('sub33008','sub330','Community Service','/on_campus/life/service.asp')
					oCMenu.makeMenu('sub33010','sub330','Dining Services','/on_campus/life/food.asp')
					oCMenu.makeMenu('sub33012','sub330','Outdoor Programs','/on_campus/life/outdoor.asp')
				oCMenu.makeMenu('sub332','top3','Technology','/on_campus/tech/over.asp')
					oCMenu.makeMenu('sub33202','sub332','Acceptable Use Policy','/on_campus/tech/aup.asp')
					oCMenu.makeMenu('sub33204','sub332','Computer Labs','/on_campus/tech/comp-labs.asp')
					oCMenu.makeMenu('sub33206','sub332','Computer Recommendations','/on_campus/tech/comp-rcmm.asp')
					oCMenu.makeMenu('sub33208','sub332','Contact Information','/on_campus/tech/contact.asp')
					oCMenu.makeMenu('sub33210','sub332','Internet Access','/on_campus/tech/internet-access.asp')
					oCMenu.makeMenu('sub33212','sub332','Network Access','/on_campus/tech/network.asp')
					oCMenu.makeMenu('sub33214','sub332','Security Center','/on_campus/tech/security-center.asp')
					oCMenu.makeMenu('sub33216','sub332','Telephone System','/on_campus/tech/telecomm.asp')
				oCMenu.makeMenu('sub334','top3','Web E-Mail','https://lvmail01.lawrenceville.org/','_blank')
			
			// oCMenu.makeMenu('top5','','&nbsp;Parents','/parents/head_news.asp')
			oCMenu.makeMenu('top5','','','/parents/head_news.asp','',153,19,'/images/common/top_menu_parents_off.gif','/images/common/top_menu_parents_on.gif','','',"bottom");
				oCMenu.makeMenu('sub50','top5','Life at Lawrenceville','/parents/head_news.asp')
				oCMenu.makeMenu('sub51','top5','Parent Information','/parents/new/overview.asp')
					oCMenu.makeMenu('sub510','sub51','Forms','/parents/assoc/forms-public.asp')
					oCMenu.makeMenu('sub511','sub51','Recommended Supplies','/parents/new/supplies.asp')
					oCMenu.makeMenu('sub512','sub51','Student Computers','/parents/new/computer.asp')
					oCMenu.makeMenu('sub513','sub51','Student Handbook','/parents/new/student_handbook.asp')
					//JA Added Student Services on 05/09/07
					oCMenu.makeMenu('sub514','sub51','Student Services','/parents/assoc/student-services.asp')
				oCMenu.makeMenu('sub52','top5','Parents at Lawrenceville','/parents/assoc/overview.asp')
					oCMenu.makeMenu('sub520','sub52','Summer Opportunities','/parents/assoc/internship-display.asp')
					oCMenu.makeMenu('sub521','sub52','Volunteer Opportunities','/parents/assoc/volunteer.asp')
					oCMenu.makeMenu('sub522','sub52','Volunteer Sign-Up','/parents/assoc/volunteer-signup.asp?r=1')
				oCMenu.makeMenu('sub53','top5','Parents&rsquo; Events','/parents/events/events.asp')
					oCMenu.makeMenu('sub530','sub53','Commencement','/parents/events/commencement.asp')
					oCMenu.makeMenu('sub531','sub53','Parents&rsquo; Weekend','/parents/events/parents_weekend.asp')
					oCMenu.makeMenu('sub532','sub53','Winter Gathering','/parents/events/winter_gath.asp')
				oCMenu.makeMenu('sub54','top5','Parents&rsquo; Fund<br />(Annual Giving)','/parents/support.asp','',155,35)
				oCMenu.makeMenu('sub55','top5','Parents&rsquo; Net','/parents/parent-login.asp')
			
			//Leave this line - it constructs the menu
			oCMenu.construct()		
	

