mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(137,15)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(152,15)
// 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/clearpixel.gif","images/clearpixel.gif","images/greypixel.gif","images/greypixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
// Left width, right width and height of the top and bottom of the border
mymenu.mainborderdimensions(1,1,1)
// These lines are for the sub menu borders
mymenu.subborderimages("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
mymenu.subbordercorners("images/greypixel.gif","images/greypixel.gif","images/greypixel.gif","images/greypixel.gif")
mymenu.subborderdimensions(1,1,1)
// Main menu cell color
mymenu.mainmenucolor("#F0F0F0")
mymenu.mainmenucolorov("#FEDCA3")
// Sub menu cell color
mymenu.submenucolor("#F0F0F0")
mymenu.submenucolorov("#FEDCA3")
// Centers text for Netscape 4.7
mymenu.netscapeadjust(3,3)
// The image that is show between the main menu items
mymenu.definemainspacer("images/greypixel.gif",1)
// The image that is show between the sub menu items
mymenu.definesubspacer("images/greypixel.gif",1)
// Do you want to "hide" (SELECT menus, OBJECT tags) when in the menu
mymenu.hideobjects(true,true)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("home","O HOME", "index.asp")
mymenu.addMenu("tops","O TOPS", "tops.asp")
mymenu.addMenu("pants","O PANTS", "pants.asp")
mymenu.addMenu("shoes","O SHOES", "shoes.asp")
mymenu.addMenu("accessories","O ACCESSORIES", "accessories.asp")
///mymenu.addMenu("support","O SUPPORT", "support.htm")
///mymenu.addMenu("faq","O F.A.Q.", "faq.htm")
///mymenu.addMenu("help","O HELP.", "faq.htm")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("tops", "", "O CHEROKEE", "products.asp?catid=2&vid=CHEROKEE")
mymenu.addSubMenu("tops", "", "O WHITE SWAN", "products.asp?catid=2&vid=WHITESWAN")
mymenu.addSubMenu("tops", "", "O LANDAU", "products.asp?catid=2&vid=LANDAU")

// Define the sub menus
mymenu.addSubMenu("pants", "", "O CHEROKEE", "products.asp?catid=1&vid=CHEROKEE")
mymenu.addSubMenu("pants", "", "O WHITE SWAN", "products.asp?catid=1&vid=WHITESWAN")
mymenu.addSubMenu("pants", "", "O LANDAU", "products.asp?catid=1&vid=LANDAU")

// Define the sub menus
mymenu.addSubMenu("shoes", "", "O CHEROKEE", "products.asp?catid=3&vid=CHEROKEE")
mymenu.addSubMenu("shoes", "", "O K-SWISS", "products.asp?catid=3&vid=KSWISS")
mymenu.addSubMenu("shoes", "", "O ROCKERS", "products.asp?catid=3&vid=ROCKERS")
mymenu.addSubMenu("shoes", "", "O SVEN", "products.asp?catid=3&vid=SVEN")

//mymenu.addSubMenu("help", "faq", "O FAQ", "faq.htm")
//mymenu.addSubMenu("help", "tutorials", "O TUTORIALS", "#")

//mymenu.addSubMenu("faq", "", "O COMPATIBILITY", "#")
//mymenu.addSubMenu("faq", "", "O DHTML MENUS", "#")
//mymenu.addSubMenu("faq", "", "O GRAPHICS", "#")
//mymenu.addSubMenu("faq", "", "O LICENSE", "#")


//mymenu.addSubMenu("tutorials", "", "O TEMPLATE SET UP", "#")
//mymenu.addSubMenu("tutorials", "", "O INCLUDE PAGES", "#")
//mymenu.addSubMenu("tutorials", "navigation", "O NAVIGATION", "#")

//mymenu.addSubMenu("navigation", "", "O FP NAVIGATION", "#")
//mymenu.addSubMenu("navigation", "", "O DW NAVIGATION", "#")
//mymenu.addSubMenu("navigation", "", "O GL NAVIGATION", "#")

// This line is required after all menu definitions are finished
mymenu.showMenu()