// JavaScript Document
mymenu = new POTMenu;
// Defines the size of the main menu items, width and height
mymenu.mainmenuitemsize(129,21);
// Defines the size of the sub menu items, width and height
mymenu.submenuitemsize(129,21);
// Defines the position of the sub menus in relation to the parent
mymenu.submenuplacing(10,10);
// Images that make up the border of the main menu. Optional.
mymenu.mainborderimages("images/left.gif","images/right.gif","images/top.gif","images/bottom.gif");
// Corners of the images that make up the main menu border.
mymenu.mainbordercorners("images/topleft.gif","images/topright.gif","images/botleft.gif","images/botright.gif");
// Left width, right width and height of the top and bottom of the border
mymenu.mainborderdimensions(2,2,2);
// These lines are for the sub menu borders
mymenu.subborderimages("images/subleft.gif","images/right.gif","images/top.gif","images/bottom.gif");
mymenu.subbordercorners("images/subtopleft.gif","images/topright.gif","images/subbotleft.gif","images/botright.gif");
mymenu.subborderdimensions(3,2,2);
// Main menu cell color
mymenu.mainmenucolor("#0F182B");
// Sub menu cell color
mymenu.submenucolor("#0F182B");
// 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/mauvepixel.gif",2);
// The image that is show between the sub menu items
mymenu.definesubspacer("images/mauvepixel.gif",2);
// This line is required here
mymenu.startMenu();
// Define the main menu.
mymenu.addMenu("home","home", "index.html");
mymenu.addMenu("humanfactor","the book", "humanfactor.htm");
mymenu.addMenu("challenges","your challenges", "yourchallenges.htm");
mymenu.addMenu("whatwedo","what we do", "whatdowedo.htm");
mymenu.addMenu("dreamweaver","who we are", "whoweare.htm");
mymenu.addMenu("resources","how we work", "howwework.htm");
mymenu.addMenu("frontpage","customer solutions", "customersolutions.htm");
mymenu.addMenu("webdesign","people solutions", "peoplesolutions.htm");
mymenu.addMenu("audit","audit solutions", "auditsolutions.htm");
mymenu.addMenu("vincemenu","customers area", "customerarea.htm");
mymenu.addMenu("clients","clients", "clients.htm");
mymenu.addMenu("contact","contact", "contact.htm");
mymenu.addMenu("U&L thinkers","Academy Members", "thinkers.htm");
// This line is required after the main menu is defined.
mymenu.showMainMenu();
// Define the sub menus
mymenu.addSubMenu("whatwedo", "", "strategic advice", "strategic.htm");
mymenu.addSubMenu("whatwedo", "", "change  management", "changemanagement.htm");
mymenu.addSubMenu("whatwedo", "", "interim  management", "interimmanagement.htm");
mymenu.addSubMenu("whatwedo", "", "education & training", "educationandtraining.htm");
mymenu.addSubMenu("whatwedo", "", "customer audits", "customeraudits.htm");
mymenu.addSubMenu("whatwedo", "", "people audits", "peopleaudits.htm");
mymenu.addSubMenu("frontpage", "planning", "plan experiences", "planning.htm");
mymenu.addSubMenu("frontpage", "implementing", "implement experiences", "implementing.htm");
mymenu.addSubMenu("frontpage", "improving", "improve experiences", "improving.htm");
mymenu.addSubMenu("dreamweaver", "", "people", "people.htm");
mymenu.addSubMenu("dreamweaver", "", "employment", "employment.htm");
mymenu.addSubMenu("dreamweaver", "", "our vision", "ourvision.htm");
mymenu.addSubMenu("vincemenu", "", "customer feedback", "customerfeedback.htm");
mymenu.addSubMenu("vincemenu", "", "memorable quotations", "quotations.htm");
mymenu.addSubMenu("vincemenu", "", "faq", "faq.htm");
mymenu.addSubMenu("webdesign", "understanding", "understanding", "understanding.htm");
mymenu.addSubMenu("webdesign", "learning", "learning", "learning.htm");
mymenu.addSubMenu("audit", "", "customer audit", "customeraudit.htm");
mymenu.addSubMenu("audit", "", "understanding audit", "understandingaudit.htm");
mymenu.addSubMenu("audit", "", "connect", "connect.htm");


mymenu.addSubMenu("planning", "", "principles", "principles.htm");
mymenu.addSubMenu("planning", "", "team design", "teamdesign.htm");
mymenu.addSubMenu("planning", "", "transformational change", "transformational.htm");
mymenu.addSubMenu("planning", "", "team achievements", "teamachievements.htm");
mymenu.addSubMenu("planning", "", "coach facilitate", "coachfacilitate.htm");

mymenu.addSubMenu("implementing", "", "interaction", "interaction.htm");
mymenu.addSubMenu("implementing", "", "transaction", "transaction.htm");
//mymenu.addSubMenu("implementing", "", "measurement", "measurement.htm")
mymenu.addSubMenu("implementing", "", "attendance", "attendance.htm");

mymenu.addSubMenu("improving", "", "individual coaching", "individualcoaching.htm");
mymenu.addSubMenu("improving", "", "team learning", "teamlearning.htm");
mymenu.addSubMenu("improving", "", "issueometer", "issueometer.htm");
mymenu.addSubMenu("improving", "", "progressometer", "progressometer.htm");
mymenu.addSubMenu("improving", "", "dissatisfaction", "dissatisfaction.htm");

mymenu.addSubMenu("understanding", "", "understanding events", "events.htm");
mymenu.addSubMenu("understanding", "", "team meetings", "teammeetings.htm");
mymenu.addSubMenu("understanding", "", "team briefing", "teambriefing.htm");
mymenu.addSubMenu("understanding", "", "debate dialogue", "debate.htm");
mymenu.addSubMenu("understanding", "", "great teams", "greatteams.htm");

mymenu.addSubMenu("learning", "", "style of play", "styleofplay.htm");
mymenu.addSubMenu("learning", "", "high performing teams", "highperformingteams.htm");
mymenu.addSubMenu("learning", "", "quality culture", "qualityculture.htm");
mymenu.addSubMenu("learning", "", "team health", "teamhealth.htm");
mymenu.addSubMenu("learning", "", "team effectiveness", "teameffectiveness.htm");
mymenu.addSubMenu("learning", "", "behaviour measurement", "behaviourmeasurement.htm");

// This line is required after all menu definitions are finished
mymenu.showMenu();
