mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(115,22)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(115,22)
// Defines the position of the sub menus in relation to the parent
mymenu.submenuplacing(0,0)
// Images that make up the border of the main menu. Optional.
//mymenu.mainborderimages("images/join3.gif","images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif")
// Corners of the images that make up the main menu border.
//mymenu.mainbordercorners("images/join3.gif","images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif")
// Left width, right width and height of the top and bottom of the border
mymenu.mainborderdimensions(0,0,0)
// These lines are for the sub menu borders
//mymenu.subborderimages("images/join3.gif","images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif")
//mymenu.subbordercorners("images/join3.gif","images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif")
mymenu.subborderdimensions(5,0,0)
// Main menu cell color
mymenu.mainmenucolor("#000000")
// Sub menu cell color
mymenu.submenucolor("#333333")
// Graphical "join" between a menu and its sub menu. Optional
mymenu.definejoin("images/join3.gif",22)
// Centers text for Netscape 4.7
mymenu.netscapeadjust(5,5)
// The image that is show between the main menu items
//mymenu.definemainspacer("images/menuspacer.gif",1)
// The image that is show between the sub menu items
//mymenu.definesubspacer("images/menusubspacer.gif",1)
// This line is required here
mymenu.startMenu()
// Define the main menu.
//mymenu.addMenu("home","HOME", "index.html")
mymenu.addMenu("Guitars","Basses", "basses.htm")
mymenu.addMenu("Amplifiers","Amplifiers", "amplifiers.htm")
mymenu.addMenu("Cabinets","Cabinets / Combos", "cabinets.htm")
mymenu.addMenu("PreAmplifiers","Preamplifiers", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=PRE")
mymenu.addMenu("Strings","Strings", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=STR")
mymenu.addMenu("Cables","Cables", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=CBL")
mymenu.addMenu("Clothes","Clothing", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=CLT")
mymenu.addMenu("replacenecks","Replacement Necks", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=NECK")
mymenu.addMenu("Effects","Effects", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=EFF_EH")
mymenu.addMenu("Pickups","Pickups", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=PICKUPS")
mymenu.addMenu("Tuners","Tuners", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=TUNERS")
mymenu.addMenu("Bags","Gig Bags&nbsp;/&nbsp;Cases", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=GIG")
mymenu.addMenu("Straps","Straps", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=STRAP")
mymenu.addMenu("hardware","Hardware", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=HARDWARE")
mymenu.addMenu("misc","Misc.", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=MISC")
mymenu.addMenu("stuff","Planet Bass Stuff", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=CTGY&Store_Code=PBOS&Category_Code=Planet_Bass_Stuff")
mymenu.addMenu("Updates","Updates", "updates.htm")
mymenu.addMenu("about","About / Contact", "about.htm")
mymenu.addMenu("legal","Legal Stuff", "legalstuff.htm")
//mymenu.addMenu("store","&nbsp;SHOP&nbsp;ONLINE", "")
//mymenu.addMenu("store","shop&nbsp;", "http://www.planetbassonline.com/mm5/merchant.mvc?Screen=PLST&Store_Code=PBOS")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("legal", "", "Terms & Warranty", "legalstuff.htm")
//mymenu.addSubMenu("Amplifiers", "", "", "")
//mymenu.addSubMenu("Cabinets", "", "", "cabinets.htm")
//mymenu.addSubMenu("Cabinets", "", "", "")
mymenu.showMenu()
