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(217,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("images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/clearpixel.gif","images/clearpixel.gif","images/clearpixel.gif","images/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("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(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("images/clearpixel.gif",2)
// The image that is show between the sub menu items
mymenu.definesubspacer("images/greypixel.gif",2)
// This line is required here
mymenu.startMenu()
// Define the main menu.
mymenu.addMenu("home","<b>&nbsp;Home Page</b>", "index.htm")
mymenu.addMenu("about","<b>&nbsp;About Rayna</b>", "about.htm")

mymenu.addMenu("coaching","<b>&nbsp;What Is Coaching?</b>", "coaching.htm")
mymenu.addMenu("7 keys","<b>&nbsp;7 Keys to Vibrant Health & Life Wealth</b>", "7 Keys.htm")

// mymenu.addMenu("dreamweaver","<b>&nbsp;dreamweaver</b>", ""

mymenu.addMenu("articles","<b>&nbsp;Articles</b>", "")
mymenu.addMenu("seminars","<b>&nbsp;Transforming Lives &nbsp;&nbsp;Custom Seminars", "")
mymenu.addMenu("presentations","<b>&nbsp;Presentations</b>", "")
mymenu.addMenu("testimonials","<b>&nbsp;Testimonials</b>", "")
mymenu.addMenu("links","<b>&nbsp;Favorite Links</b>", "links.htm")

mymenu.addMenu("contact","<b>&nbsp;Contact Rayna</b>", "contact.htm")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
//mymenu.addSubMenu("coaches", "", "<b>&nbsp;Rayna Lumbard, LMFT</b>", "rayna.htm")
//mymenu.addSubMenu("coaches", "", "<b>&nbsp;Team Rayna and Terri</b>", "rayna_terri.htm")
//mymenu.addSubMenu("coaches", "", "<b>&nbsp;Terri Snyder, MA</b>", "terri.htm")
//mymenu.addSubMenu("coaches", "", "<b>&nbsp;Louise Wen</b>", "louise.htm")
// mymenu.addSubMenu("dreamweaver", "", "<b>&nbsp;tutorials</b>", "http://www.dreamweaversites.com/tutorials.html")
// mymenu.addSubMenu("dreamweaver", "", "<b>&nbsp;forums</b>", "http://forum.dreamweaverwebmaster.com")
// mymenu.addSubMenu("dreamweaver", "", "<b>&nbsp;templates</b>", "http://www.thetemplatestore.com/")
mymenu.addSubMenu("articles", "", "<b>&nbsp;The Joy of Loving Myself</b>", "joy_of_loving_myself.htm")
mymenu.addSubMenu("articles", "", "<b>&nbsp;Connecting With The &nbsp;&nbsp;Dolphins</b>", "Connect_Dolphins.htm")

mymenu.addSubMenu("seminars", "", "<b>&nbsp;You Can Heal Your Life</b>", "open_your_creativity.htm")
mymenu.addSubMenu("seminars", "", "<b>&nbsp;Laser-Light Coaching Circle</b>", "laser_light.htm")
mymenu.addSubMenu("seminars", "", "<b>&nbsp;Simply Organize</b>", "simply_organize.htm")
mymenu.addSubMenu("seminars", "", "<b>&nbsp;Transformational Coaching</b>", "transformational_coaching.htm")
mymenu.addSubMenu("seminars", "", "<b>&nbsp;Create Life Wealth</b>", "create_life_wealth.htm")

mymenu.addSubMenu("presentations", "", "<b>&nbsp;Law of Attraction in Action</b>", "Law_Of_Attraction.htm")
mymenu.addSubMenu("presentations", "", "<b>&nbsp;Connect with the Dolphins</b>", "connect_with_dolphins.htm")
mymenu.addSubMenu("presentations", "", "<b>&nbsp;Thriving in 2009</b>", "thriving_in_2004.htm")
// mymenu.addSubMenu("webdesign", "spain", "<b>&nbsp;spain</b>", "")
// mymenu.addSubMenu("webdesign", "usa", "<b>&nbsp;usa</b>", "")
mymenu.addSubMenu("testimonials", "", "<b>&nbsp;Rayna Lumbard, LMFT</b>", "testimonials.htm")
mymenu.addSubMenu("testimonials", "", "<b>&nbsp;Laser Light Coaching Circle</b>", "laser_light_fb.htm")

// mymenu.addSubMenu("england", "", "<b>&nbsp;apperception</b>", "http://www.appercept.co.uk")
// mymenu.addSubMenu("ireland", "", "<b>&nbsp;inkkdesign</b>", "http://www.inkkdesign.com")
// mymenu.addSubMenu("spain", "", "<b>&nbsp;virtualred</b>", "http://www.virtualred.net")
// mymenu.addSubMenu("spain", "", "<b>&nbsp;ibsspain</b>", "http://www.ibs-spain.com")

// mymenu.addSubMenu("usa", "", "<b>&nbsp;stureilly</b>", "http://www.stureillydesign.com")
// mymenu.addSubMenu("usa", "", "<b>&nbsp;moneytree</b>", "http://www.moneytreesystems.com")
// mymenu.addSubMenu("usa", "", "<b>&nbsp;pcarts</b>", "http://www.pc-arts.com")
// mymenu.addSubMenu("usa", "", "<b>&nbsp;allegheny</b>", "http://www.alleghenyweb.com")

// This line is required after all menu definitions are finished
mymenu.showMenu()