//defines menu items
mymenu2 = new Menu
//defines colour of main table border and positioning
mymenu2.maintableprops("#006666",1,1,0)
//defines colour of main cells and positioning
mymenu2.maincellprops("center","#006666","#000000")
//defines colour of sub table cell borders and positioning
mymenu2.subtableprops("#006666",1,1,0)
//defines colour of sub cells and positioning
mymenu2.subcellprops("left","#006666","#000000")
//defines font type, size and colour
mymenu2.fontdetails("Verdana",1,"#CDCDCD")
mymenu2.startMenu()
//defines the names of the links
mymenu2.addMenu("home","|&nbsp;home")
mymenu2.addMenu("web","|&nbsp;web&nbspdesign")
mymenu2.addMenu("power","|&nbsp;power&nbspgen.")
mymenu2.addMenu("design","|&nbsp;design")
mymenu2.addMenu("portfolio","|&nbsp;portfolio")
mymenu2.addMenu("other","|&nbsp;other")
mymenu2.addMenu("legal","|&nbsp;legal&nbsp|")
mymenu2.showMainMenu()

//defines the drop down links category name - name to appear - URL
mymenu2.addSubMenu("home", "&nbsp;splash&nbsp;", "index.htm")
mymenu2.addSubMenu("home", "&nbsp;home", "home.htm")
mymenu2.addSubMenu("web", "&nbsp;web presence", "web.htm")
mymenu2.addSubMenu("web", "&nbsp;newsletter", "web.htm#news")
mymenu2.addSubMenu("web", "&nbsp;catalog", "web.htm#cat")
mymenu2.addSubMenu("web", "&nbsp;database tools", "web.htm#dbase")
mymenu2.addSubMenu("web", "&nbsp;animation", "web.htm#ani")
mymenu2.addSubMenu("power", "&nbsp;paralleling systems", "power.htm")
mymenu2.addSubMenu("power", "&nbsp;technical training", "power.htm#train")
mymenu2.addSubMenu("power", "&nbsp;training outline", "power.htm#outline")
mymenu2.addSubMenu("power", "&nbsp;design review", "power.htm#review")
mymenu2.addSubMenu("design", "&nbsp;CD-ROM", "design.htm#top")
mymenu2.addSubMenu("design", "&nbsp;presentation", "design.htm#present")
mymenu2.addSubMenu("design", "&nbsp;brochure", "design.htm#brochure")
mymenu2.addSubMenu("design", "&nbsp;graphics", "design.htm#graph")
mymenu2.addSubMenu("portfolio", "&nbsp;main page", "portfolio.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;ads & posters", "adsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;animation", "anisamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;brochure / catalog", "docsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;CD-ROM", "cdsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;coordinated design", "graphsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;logo & brand", "logosamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;illustrations & icons", "iconsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;online ads", "banner.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;photo & photo design", "photosamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;trade shows", "showsamples.htm")
mymenu2.addSubMenu("portfolio", "&nbsp;web design", "websamples.htm")
mymenu2.addSubMenu("other", "&nbsp;about us", "about.htm#about")
mymenu2.addSubMenu("other", "&nbsp;contact", "about.htm#contact")
mymenu2.addSubMenu("other", "&nbsp;links", "links.htm")
//mymenu2.addSubMenu("other", "&nbsp;site map", "map.htm")
mymenu2.addSubMenu("legal", "&nbsp;terms of use", "terms.htm")
mymenu2.addSubMenu("legal", "&nbsp;confidentiality", "confide.htm")
mymenu2.showMenu()