mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(138,19)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(155,19)
// 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("../../assets/blackpixel.gif","../../assets/blackpixel.gif","../../assets/blackpixel.gif","../../assets/blackpixel.gif")
// Corners of the images that make up the main menu border.
//mymenu.mainbordercorners("../../assets/blackpixel.gif","../../assets/blackpixel.gif","../../assets/blackpixel.gif","../../assets/blackpixel.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("/assets/blackpixel.gif","/assets/blackpixel.gif","/assets/blackpixel.gif","/assets/blackpixel.gif")
mymenu.subbordercorners("/assets/blackpixel.gif","/assets/blackpixel.gif","/assets/blackpixel.gif","/assets/blackpixel.gif")
mymenu.subborderdimensions(1,1,1)
// Main menu cell color
mymenu.mainmenucolor("#6699CC")
// Sub menu cell color
mymenu.submenucolor("#6699CC")
// Graphical "join" between a menu and its sub menu. Optional
//mymenu.definejoin("assets/join.gif",25)
// Centers text for Netscape 4.7
mymenu.netscapeadjust(3,3)
// The image that is show between the main menu items
mymenu.definemainspacer("/assets/blackpixel.gif",1)
// The image that is show between the sub menu items
mymenu.definesubspacer("/assets/blackpixel.gif",1)
// This line is required here
mymenu.startMenu()
mymenu.addMenu("about","<b>About Us</b>", "/aboutus/aboutus.aspx")
mymenu.addMenu("directions", "<b>Directions</b>", "/aboutus/directions.aspx")
mymenu.addMenu("staff", "<b>Our Staff</b>", "/aboutus/staff.aspx")

mymenu.addMenu("facilities","<b>Facilities</b>", "/facilities.aspx")
mymenu.addMenu("beaches","<b>Beaches</b>", "/beaches.aspx")
mymenu.addMenu("pass","<b>Pass Information</b>", "/passInfo.aspx")
mymenu.addMenu("register","<b>Register for a Class</b>", "/register_for_class.aspx")
mymenu.addMenu("policies","<b>Policies</b>", "/policies.aspx")


// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("about", "", "<b>director's message</b>", "/aboutus/director.aspx")
mymenu.addSubMenu("about", "", "<b>our staff</b>", "/aboutus/staff.aspx")



// This line is required after all menu definitions are finished
mymenu.showMenu()
