mymenu = new POTMenu
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(127,19)
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(137,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/bluepixel.gif","images/bluepixel.gif","images/bluepixel.gif","images/bluepixel.gif")
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/bluepixel.gif","images/bluepixel.gif","images/bluepixel.gif","images/bluepixel.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("#6699CC")
// Sub menu cell color
mymenu.submenucolor("#6699CC")
// 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","<b>home</b>", "http://www.farnorthernrc.org/mylifemychoice/index.htm")
mymenu.addMenu("policy","<b>policy standards</b>", "")
mymenu.addMenu("resource link page","<b>resource links</b>", "")
mymenu.addMenu("training","<b>training</b>", "http://www.farnorthernrc.org/mylifemychoice/peer training.htm")
mymenu.addMenu("drug & alcohol","<b>drug & alcohol</b>", "http://www.farnorthernrc.org/mylifemychoice/drug_alcohol.htm")
mymenu.addMenu("ask the experts","<b>ask the experts</b>", "http://www.farnorthernrc.org/mylifemychoice/ask the experts.htm")
mymenu.addMenu("email","<b>comments</b>", "mailto:maweston@farnorthernrc.org")
// This line is required after the main menu is defined.
mymenu.showMainMenu()
// Define the sub menus
mymenu.addSubMenu("policy", "", "<b>policy standards</b>", "http://www.farnorthernrc.org/mylifemychoice/Policy Standards.htm")
mymenu.addSubMenu("policy", "", "<b>implementation</b>", "http://www.farnorthernrc.org/mylifemychoice/Implementation Tips.htm")
mymenu.addSubMenu("policy", "", "<b>consumer version</b>", "http://www.farnorthernrc.org/mylifemychoice/The Plan.htm")
mymenu.addSubMenu("policy", "", "<b>nova scotia guide</b>", "http://www.farnorthernrc.org/mylifemychoice/Nova Scotia/Relationships_and_Sexuality_Guidelines.pdf")
mymenu.addSubMenu("resource link page", "", "<b>books & videos</b>", "http://www.farnorthernrc.org/mylifemychoice/Books.htm")
mymenu.addSubMenu("resource link page", "", "<b>book reviews</b>", "http://www.farnorthernrc.org/mylifemychoice/Book Reviews.htm")
mymenu.addSubMenu("resource link page", "", "<b>curricula</b>", "http://www.farnorthernrc.org/mylifemychoice/Curricula.htm")
mymenu.addSubMenu("resource link page", "", "<b>hingsburger </b>", "http://www.farnorthernrc.org/mylifemychoice/Hingsburger Speaks.htm")
mymenu.addSubMenu("resource link page", "", "<b>journal articles</b>", "http://www.farnorthernrc.org/mylifemychoice/Journal Articles.htm")
mymenu.addSubMenu("resource link page", "", "<b>newsletters</b>", "http://www.farnorthernrc.org/mylifemychoice/Newsletters.htm")
mymenu.addSubMenu("resource link page", "", "<b>parent guides</b>", "http://www.farnorthernrc.org/mylifemychoice/Parent_Guides/Parent_guides.htm")
mymenu.addSubMenu("resource link page", "", "<b>personal care</b>", "http://www.farnorthernrc.org/mylifemychoice/Policy Standards/PCG.pdf")
mymenu.addSubMenu("resource link page", "", "<b>resources flyer</b>", "http://www.farnorthernrc.org/mylifemychoice/AbuseFree_poster_final.pdf")
mymenu.addSubMenu("resource link page", "", "<b>web links</b>", "http://www.farnorthernrc.org/mylifemychoice/Web Links.htm")
mymenu.addSubMenu("training", "", "<b>peer to peer</b>", "http://www.farnorthernrc.org/mylifemychoice/Peer Training.htm")
mymenu.addSubMenu("training", "", "<b>staff</b>", "http://www.farnorthernrc.org/mylifemychoice/conferences.htm")
mymenu.addSubMenu("training", "", "<b>other</b>", "http://www.farnorthernrc.org/mylifemychoice/Conferences_other.htm")



// This line is required after all menu definitions are finished
mymenu.showMenu()
