mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(122,18)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(187,18)
// 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/blackpixel.gif","images/blackpixel.gif","images/clearpixel.gif","images/blackpixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/blackpixel.gif","images/blackpixel.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("#e2ded4")
// Sub menu cell color
mymenu.submenucolor("#e2ded4")
// 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)
// 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","<b>Home</b>", "index.htm")
mymenu.addMenu("instruction","<b>Instruction</b>", "#")
mymenu.addMenu("scheduling","<b>Online Scheduling</b>", "#")
mymenu.addMenu("about","<b>About Jim Phenicie</b>", "#")
mymenu.addMenu("articles","<b>Articles</b>", "#")
mymenu.addMenu("videos","<b>Videos</b>", "#")
mymenu.addMenu("learning_center","<b>Golf Academy</b>", "#")
mymenu.addMenu("fitting","<b>Club Fitting</b>", "#")
mymenu.addMenu("Facilities","<b>Facilities</b>", "#")
mymenu.addMenu("contact","<b>Contact</b>", "#")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus


//  Instruction Items
mymenu.addSubMenu("instruction", "adult_lessons", "<b>Adult Lessons</b>", "#"); // NL
mymenu.addSubMenu("instruction", "junior_lessons", "<b>Junior Lessons</b>", "#"); // NL
mymenu.addSubMenu("instruction", "", "<b>Player Development</b>", "player_development.htm")

mymenu.addSubMenu("adult_lessons", "al_private", "<b>Private</b>", "private_adult_lessons.htm")
mymenu.addSubMenu("adult_lessons", "al_group", "<b>Group</b>", "private_adult_group.htm")
mymenu.addSubMenu("adult_lessons", "al_series", "<b>Series</b>", "adult_series_pricing.htm")

mymenu.addSubMenu("junior_lessons", "jl_private", "<b>Private</b>", "private_junior_lessons.htm")
mymenu.addSubMenu("junior_lessons", "jl_group", "<b>Group</b>", "junior_group_lessons.htm")
mymenu.addSubMenu("junior_lessons", "jl_series", "<b>Series</b>", "junior_series_pricing.htm")

// Scheduling Items
mymenu.addSubMenu("scheduling", "", "<b>Schedule a Lesson at Windrose</b>", "https://www.smarterlessons.com/prod/pub/?m=cbf896c6f13e837d5c4fb1f1f9ed633a", "_blank");
mymenu.addSubMenu("scheduling", "", "<b>Schedule a Lesson at Oakhurst</b>", "https://www.smarterlessons.com/prod/pub/?m=f372f3433681f410e9dd5bff719436fd", "_blank");
mymenu.addSubMenu("scheduling", "", "<b>Schedule Help</b>", "scheduling_help.htm");

// About Items
mymenu.addSubMenu("about", "", "<b>Bio</b>", "jim_bio.htm");
mymenu.addSubMenu("about", "", "<b>Awards</b>", "jim_awards.htm");
mymenu.addSubMenu("about", "", "<b>Tournament Performance</b>", "tour_performance.htm");
mymenu.addSubMenu("about", "", "<b>Testimonials</b>", "testimonials.htm");
mymenu.addSubMenu("about", "", "<b>Houston Sports News Article</b>", "houston_sp_news_article.htm");
mymenu.addSubMenu("about", "", "<b>What's in his bag?</b>", "whats_in_his_bag.htm");

// Instructional Article Items
mymenu.addSubMenu("articles", "a_bunkers", "<b>Bunkers</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_chipping", "<b>Chipping</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_driving", "<b>Driving</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_equipment", "<b>Equipment</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_general", "<b>General</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_irons", "<b>Irons</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_putting", "<b>Putting</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_swing", "<b>Swing</b>", "#"); // NL
mymenu.addSubMenu("articles", "a_weather", "<b>Weather</b>", "#"); // NL

mymenu.addSubMenu("a_bunkers", "", "<b>Long Bunker Shot</b>", "art_long_bunker_shot.htm");
mymenu.addSubMenu("a_chipping", "", "<b>Better Chipping</b>", "art_better_chipping.htm");
mymenu.addSubMenu("a_chipping", "", "<b>Putt vs Chip</b>", "art_putt_vs_chip.htm");
mymenu.addSubMenu("a_driving", "", "<b>Longest Drive Ever</b>", "art_longest_drive_ever.htm");
mymenu.addSubMenu("a_equipment", "", "<b>A Time For Change</b>", "art_time_for_change.htm");
mymenu.addSubMenu("a_general", "", "<b>Timing is Everything</b>", "art_timing_is_everything.htm");
mymenu.addSubMenu("a_irons", "", "<b>Long Iron Play</b>", "art_long_iron_play.htm");
mymenu.addSubMenu("a_putting", "", "<b>Putt vs Chip</b>", "art_putt_vs_chip.htm");
mymenu.addSubMenu("a_putting", "", "<b>10% Rule</b>", "art_ten_percent_rule.htm");
mymenu.addSubMenu("a_swing", "", "<b>Proper Weight Shift</b>", "art_proper_weight_shift.htm");
mymenu.addSubMenu("a_swing", "", "<b>Swing Plane</b>", "art_swing_plane.htm");
mymenu.addSubMenu("a_swing", "", "<b>Over The Top</b>", "art_over_the_top.htm");
mymenu.addSubMenu("a_weather", "", "<b>Changing Weather</b>", "art_changing_weather.htm");

// Instructional Video Articles
mymenu.addSubMenu("videos", "", "<b>Grip</b>", "vid_grip.htm");
mymenu.addSubMenu("videos", "", "<b>Swing Plane</b>", "vid_swing_plane.htm");
mymenu.addSubMenu("videos", "", "<b>Ball Flight Control</b>", "vid_ball_flight_control.htm");
mymenu.addSubMenu("videos", "", "<b>Slice Correction</b>", "vid_slice_correction.htm");
mymenu.addSubMenu("videos", "", "<b>Set Up</b>", "vid_set_up.htm");

// Learning Center Items
mymenu.addSubMenu("learning_center", "", "<b>Video Analysis Information</b>", "lc_video_analysis.htm");
mymenu.addSubMenu("learning_center", "", "<b>View Your Analysis</b>", "lc_practice_facilities.htm");

//Fitting Items
mymenu.addSubMenu("fitting", "", "<b>Jim's Credentials</b>", "jims_credentials.htm");
mymenu.addSubMenu("fitting", "", "<b>Titleist Products</b>", "titleist_fitting_product.htm");

// Contact Items
mymenu.addSubMenu("contact", "", "<b>Contact Information</b>", "contact_jim.htm");
mymenu.addSubMenu("contact", "", "<b>MapQuest Map to WindRose</b>", "http://www.mapquest.com/maps/map.adp?country=US&countryid=US&addtohistory=&searchtype=address&cat=&address=6235%20Pinelakes%20Blvd&city=Spring&state=TX&zipcode=77379%2d2599&search=%20%20Search%20%20&searchtab=address", "_blank")
mymenu.addSubMenu("contact", "", "<b>MapQuest Map to Oakhurst</b>", "http://www.mapquest.com/maps/map.adp?searchtype=address&country=US&addtohistory=&searchtab=home&address=19980+Bentwood+Oaks+Dr&city=porter+&state=tx&zipcode=77365", "_blank")

// Facilities
mymenu.addSubMenu("Facilities", "", "<b>Windrose Golf Club</b>", "windrose_golf_club.htm");
mymenu.addSubMenu("Facilities", "", "<b>Oakhurst Golf Club</b>", "oakhurst_golf_club.htm");




// This line is required after all menu definitions are finished
mymenu.showMenu()
