//defines menu items
mymenu2 = new Menu
//defines colour of main table border and positioning
mymenu2.maintableprops("#39417B",0,0,0)
//defines colour of main cells and positioning
mymenu2.maincellprops("left","#39417B","#000000")
//defines colour of sub table cell borders and positioning
mymenu2.subtableprops("#39417B",1,2,0)
//defines colour of sub cells and positioning
mymenu2.subcellprops("left","#39417B","#000000")
//defines font type, size and colour
mymenu2.fontdetails("Verdana",1,"#FFFFFF")
mymenu2.startMenu()
//defines the names of the links
mymenu2.addMenu("home","|&nbsp;home")
mymenu2.addMenu("mngmnt","|&nbsp;management")
mymenu2.addMenu("services","|&nbsp;services")
mymenu2.addMenu("contact","|&nbsp;contact")
//mymenu2.addMenu("news","|&nbsp;news")
//mymenu2.addMenu("about","|&nbsp;about")
mymenu2.addMenu("hr","|&nbsp;careers")
mymenu2.addMenu("links","|&nbsp;links&nbsp|")
mymenu2.showMainMenu()

//defines the drop down links category name - name to appear - URL
mymenu2.addSubMenu("home", "&nbsp;HOME&nbsp;", "index.html")
mymenu2.addSubMenu("mngmnt", "&nbsp;Management Team", "management.htm")
mymenu2.addSubMenu("services", "&nbsp;Overview of Services", "serv_services.htm")
mymenu2.addSubMenu("services", "&nbsp;Spectrum Management", "serv_spectrummanage.htm")
mymenu2.addSubMenu("services", "&nbsp;Fixed&nbsp;Network&nbsp;Engineering", "serv_network.htm")
mymenu2.addSubMenu("services", "&nbsp;L.O.S.&nbsp;Microwave&nbsp;Engineering", "serv_microwave.htm")
mymenu2.addSubMenu("services", "&nbsp;Project&nbsp;Management", "serv_projmgmt.htm")
mymenu2.addSubMenu("services", "&nbsp;Tech. & Biz. Consulting", "serv_techbiz.htm")
mymenu2.addSubMenu("services", "&nbsp;Power Systems", "serv_powersys.htm")
mymenu2.addSubMenu("hr", "&nbsp;Careers at Stream Wireless", "hr.htm")
//mymenu2.addSubMenu("hr", "&nbsp;positions", "positions.htm")
//mymenu2.addSubMenu("hr", "&nbsp;benefits", "benefits.htm")
//mymenu2.addSubMenu("hr", "&nbsp;FAQ", "faq.htm")
mymenu2.addSubMenu("contact", "&nbsp;Contact Us", "contact.htm")
mymenu2.addSubMenu("links", "&nbsp;Links of Interest", "links.htm")
mymenu2.showMenu()