			//defines menu items
			mymenu2 = new Menu

			//defines colour of main table border and positioning
			mymenu2.maintableprops("",0,0,0)

			//defines colour of main cells and positioning
			mymenu2.maincellprops("center","","")

			//defines colour of sub table cell borders and positioning
			mymenu2.subtableprops("#CCCCCC",1,1,0)
			
			//defines colour of sub cells and positioning
			mymenu2.subcellprops("left","#ffffff","#ffffff")

			//defines font type, size and colour
			mymenu2.fontdetails("arial, helvetica, verdana",2,"#000000")
			mymenu2.startMenu()

			//defines the names of the links
			mymenu2.addMenu("WhoWeAre","<a href='/who.htm'><b>Who We Are</b></a>")
			mymenu2.addMenu("Solutions","<a href='/solutions.htm'><b>Solutions</b></a>")
			mymenu2.addMenu("Services","<a href='/services.htm'><b>Services</b></a>")
			mymenu2.showMainMenu()
			
			//defines the drop down links category name - name to appear - URL
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;About Us&nbsp;", "/who.htm")
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;History", "/who_history.htm")
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;Alliances", "/who_alliances.htm")
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;Careers", "/who_careers.htm")
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;Contact", "/contact.htm")
			mymenu2.addSubMenu("WhoWeAre", "&nbsp;News & Events", "/who_news.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Overview", "/solutions.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Technologies", "/technologies.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Methodology", "/solutions_methodology.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Solutions", "/solutions_focus.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Testimonials", "/testimonials.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Industries", "/solutions_industry.htm")
			mymenu2.addSubMenu("Solutions", "&nbsp;Government", "/solutions_government.htm")
			mymenu2.addSubMenu("Services", "&nbsp;Overview", "/services.htm")
			mymenu2.addSubMenu("Services", "&nbsp;Strategic Consulting", "/services_strategic.htm")
			mymenu2.addSubMenu("Services", "&nbsp;RFP Consulting", "/services_rfp_consulting.htm")
			mymenu2.addSubMenu("Services", "&nbsp;Application Development", "/services_application.htm")
			mymenu2.addSubMenu("Services", "&nbsp;Graphic Design", "/services_graphic.htm")
			mymenu2.addSubMenu("Services", "&nbsp;Staffing Solutions", "/services_i3staffingsolutions_overview.htm")
			mymenu2.showMenu()