mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(148,21)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(147,21)
// 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("clearpixel.gif","clearpixel.gif","clearpixel.gif","clearpixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("clearpixel.gif","clearpixel.gif","clearpixel.gif","clearpixel.gif")
// Left width, right width and height of the top and bottom of the border
mymenu.mainborderdimensions(1,2,2)
// These lines are for the sub menu borders
mymenu.subborderimages("greypixel.gif","greypixel.gif","greypixel.gif","greypixel.gif")
mymenu.subbordercorners("greypixel.gif","greypixel.gif","greypixel.gif","greypixel.gif")
mymenu.subborderdimensions(2,2,2)
// Main menu cell color
mymenu.mainmenucolor("#C2D2E3")
// Sub menu cell color
mymenu.submenucolor("#C2D2E3")
// 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("clearpixel.gif",2)
// The image that is show between the sub menu items
mymenu.definesubspacer("greypixel.gif",2)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("Home","<b>Home</b>", "index.php")
mymenu.addMenu("Our Services","<b>Our Services</b>", "")
mymenu.addMenu("Our Staff","<b>Our Staff</b>", "")
mymenu.addMenu("Our Customers","<b>Our Customers</b>", "")
mymenu.addMenu("Our Equipment","<b>Our Equipment</b>", "")
mymenu.addMenu("Our Shop","<b>Our Shop</b>", "")
mymenu.addMenu("Education","<b>Education</b>", "carCareAware.php")
mymenu.addMenu("Site Map","<b>Site Map</b>", "siteMap.php")
mymenu.addMenu("Contact Us","<b>Contact Us</b>", "hoursOfOperation.php")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("Our Services", "", "<b>Protection Plan</b>", "BGprotectionPlan.php")
mymenu.addSubMenu("Our Services", "", "<b>Confidence Plus</b>", "confidencePlus.php")
mymenu.addSubMenu("Our Services", "", "<b>Tune-Ups</b>", "tuneUps.php")
mymenu.addSubMenu("Our Services", "", "<b>Air Conditioning</b>", "airConditioningSystem.php")
mymenu.addSubMenu("Our Services", "", "<b>Cooling System</b>", "coolingSystemService.php")
mymenu.addSubMenu("Our Services", "", "<b>Power Steering</b>", "powerSteeringService.php")
mymenu.addSubMenu("Our Services", "", "<b>Transmission</b>", "transmissionService.php")
mymenu.addSubMenu("Our Services", "", "<b>Fuel System</b>", "fuelInductionSystemService.php")
mymenu.addSubMenu("Our Services", "", "<b>Battery Service</b>", "batteryService.php")
mymenu.addSubMenu("Our Services", "", "<b>Brake System</b>", "brakeSystemService.php")
mymenu.addSubMenu("Our Services", "", "<b>Exhaust System</b>", "exhaustSystemService.php")
mymenu.addSubMenu("Our Services", "", "<b>Engine Flush</b>", "engineFlushService.php")
mymenu.addSubMenu("Our Services", "", "<b>Lube and Fuel</b>", "lubricationAndFuelDepositService.php")
mymenu.addSubMenu("Our Services", "", "<b>Power Steering</b>", "powerSteeringService.php")
mymenu.addSubMenu("Our Services", "", "<b>Radiator Flush</b>", "radiatorFlushService.php")
mymenu.addSubMenu("Our Services", "", "<b>Maintenance</b>", "maintenancePrograms.php")
mymenu.addSubMenu("Our Services", "", "<b>Other Services</b>", "otherServices.php")
mymenu.addSubMenu("Our Staff", "", "<b>Tim Cooper</b>", "timCooper.php")
mymenu.addSubMenu("Our Staff", "", "<b>Robert Bright</b>", "robertBright.php")
mymenu.addSubMenu("Our Staff", "", "<b>Jami Foltz</b>", "jamiFoltz.php")
mymenu.addSubMenu("Our Staff", "", "<b>Brenda Cooper</b>", "brendaCooper.php")
mymenu.addSubMenu("Our Customers", "", "<b>Testimonials</b>", "testimonials.php")
mymenu.addSubMenu("Our Customers", "", "<b>Vehicle Models</b>", "vehicleModels.php")
mymenu.addSubMenu("Our Customers", "", "<b>Business Fleets</b>", "businessFleets.php")
mymenu.addSubMenu("Our Equipment", "", "<b>Master Tech</b>", "masterTech.php")
mymenu.addSubMenu("Our Equipment", "", "<b>Snap-On</b>", "snapOn.php")
mymenu.addSubMenu("Our Equipment", "", "<b>Star Tester</b>", "starTester.php")
mymenu.addSubMenu("Our Shop", "", "<b>About Us</b>", "aboutUs.php")
mymenu.addSubMenu("Our Shop", "", "<b>Our Location</b>", "ourLocation.php")
mymenu.addSubMenu("Our Shop", "", "<b>Wall of Fame</b>", "wallOfFame.php")
mymenu.addSubMenu("Our Shop", "", "<b>Hours of Operation</b>", "hoursOfOperation.php")
mymenu.addSubMenu("Our Shop", "", "<b>Code of Ethics</b>", "codeOfEthics.php")
// This line is required after all menu definitions are finished