mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(163,19)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(160,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("images/clearpixel.gif","images/clearpixel.gif","images/blackpixel.gif","images/blackpixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/clearpixel.gif","images/clearpixel.gif","images/blackpixel.gif","images/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("images/blackpixel.gif","images/blackpixel.gif","images/blackpixel.gif","images/blackpixel.gif")
mymenu.subbordercorners("images/blackpixel.gif","images/blackpixel.gif","images/blackpixel.gif","images/blackpixel.gif")
mymenu.subborderdimensions(1,1,1)
// Main menu cell color
mymenu.mainmenucolor("#000000")
mymenu.mainmenucolorov("#FF0408")
// Sub menu cell color
mymenu.submenucolor("#000000")
mymenu.submenucolorov("#FF0408") 
// Graphical "join" between a menu and its sub menu. Optional
//mymenu.definejoin("images/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("images/blackpixel.gif",1)
// The image that is show between the sub menu items
mymenu.definesubspacer("images/blackpixel.gif",1)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("home","Home", "index.jsp")
mymenu.addMenu("contacts","HTYFC Board", "contacts.jsp")
mymenu.addMenu("forms","Documents/Forms", "forms.jsp")
mymenu.addMenu("directions","Directions", "directions.jsp")
mymenu.addMenu("football","Football", "football.jsp")
mymenu.addMenu("cheerleading","Cheerleading", "cheerleading.jsp")
mymenu.addMenu("links","Links", "links.jsp")
mymenu.addMenu("sponsors","Sponsors", "sponsors.jsp")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
//mymenu.addSubMenu("forms", "","2010 Registration Form", "forms/2008registration.pdf")
mymenu.addSubMenu("forms", "","2010 Game Schedule", "forms/2010 Game Schedule.doc")
mymenu.addSubMenu("forms", "","2nd Grade Schedule", "forms/2ND GRADE SCHEDULE 2010.doc")
mymenu.addSubMenu("forms", "","2010 Registration ", "registration.jsp")
mymenu.addSubMenu("forms", "","2010 Registration Form", "forms/reg_form.doc")
mymenu.addSubMenu("forms", "","2010 School Flyer", "forms/2010_school_flyer.pdf")
mymenu.addSubMenu("forms", "","Code of Conduct", "forms/2008conduct.pdf")
mymenu.addSubMenu("forms", "","Cheering Uniform Info", "forms/2010uniformflyer.pdf")
mymenu.addSubMenu("football", "","Flag", "flag_home.jsp")
mymenu.addSubMenu("football", "","Junior Tigers", "juniortigers_home.jsp")
mymenu.addSubMenu("football", "","Pre Clinic", "preclinic_home.jsp")
mymenu.addSubMenu("football", "","Clinic", "clinic_home.jsp")
mymenu.addSubMenu("football", "","Super Pee Wee", "superpeewee_home.jsp")
mymenu.addSubMenu("football", "","Pee Wee", "peewee_home.jsp")
mymenu.addSubMenu("football", "","Junior Varsity", "juniorvarsity_home.jsp")
mymenu.addSubMenu("football", "","Varsity", "varsity_home.jsp")



// This line is required after all menu definitions are finished
mymenu.showMenu()
