function mmLoadAMenu(label, mw)
{
  return new Menu(
    label,
    mw,
    20,						// Item height in pixels
    "Verdana, Arial, Helvetica, sans-serif",	// Font
    11,						// Font size
    "#ffffff",					// Font colour
    "#000000",					// Font colour mouseover
    "#A5212C",					// Background colour
    "#F9D501",					// Background colour mouseover
    "left",					// Horizontal alignment (left / middle / right)
    "top",					// Vertical alignment (top / middle / bottom)
    5,						// Padding within items
    0,						// Gap between items (should usually be 0)
    500,					// Timeout (milliseconds) for hiding menu
    200,					// Submenu X offset
    100,						// Submenu Y offset
    true,					// Submenu relative to item?
    false,					// Opaque?
    true,					// Vertical (true / false)
    0,						// Menu item indent
    true,					// unused?
    true					// unused?
  );
}

function mmLoadMenus()
{
  if (window.mm_menu_about) return;

  window.mm_menu_conference = mmLoadAMenu("root",150);
    mm_menu_conference.addMenuItem("Speaking Topics","location='http://glenncardwell.com/talks.html'");
//    mm_menu_conference.addMenuItem("Glenn in Action","location='http://glenncardwell.com/action.html'");
//    mm_menu_conference.addMenuItem("Conference Package","location='http://glenncardwell.com/conference_package.html'");
    mm_menu_conference.addMenuItem("Testimonials","location='http://glenncardwell.com/testimonials.html'");
    mm_menu_conference.addMenuItem("Corporate Quiz Game","location='http://glenncardwell.com/quiz-game.html'");
    mm_menu_conference.hideOnMouseOut=true;

  window.mm_menu_workshops = mmLoadAMenu("Workshops",150);
    mm_menu_workshops.addMenuItem("Workshop Topics","location='location='http://glenncardwell.com/quiz-game.html''");
//    mm_menu_workshops.addMenuItem("Glenn in Action","location='http://glenncardwell.com/action.html'");
    mm_menu_workshops.addMenuItem("Testimonials","location='http://glenncardwell.com/testimonials.html'");
    mm_menu_workshops.hideOnMouseOut=true;

  window.mm_menu_about = mmLoadAMenu("about",150);
    mm_menu_about.addMenuItem("Biography","location='http://glenncardwell.com/about.html'");
//    mm_menu_about.addMenuItem("Glenn in Action","location='http://glenncardwell.com/action.html'");
//    mm_menu_about.addMenuItem("Awards","location='http://glenncardwell.com/awards.html'");
    mm_menu_about.addMenuItem("Testimonials","location='http://glenncardwell.com/testimonials.html'");
    mm_menu_about.hideOnMouseOut=true;

  window.mm_menu_clients = mmLoadAMenu("Clients",150);
    mm_menu_clients.addMenuItem("Client List","location='http://glenncardwell.com/clients.html'");
    mm_menu_clients.addMenuItem("Testimonials","location='http://glenncardwell.com/testimonials.html'");
    mm_menu_clients.hideOnMouseOut=true;

  window.mm_menu_working = mmLoadAMenu("Working with Glenn",150);
    mm_menu_working.addMenuItem("Event Support","location='http://glenncardwell.com/event-support.html'");
    mm_menu_working.addMenuItem("Photographs","location='http://glenncardwell.com/photos.html'");
    mm_menu_working.addMenuItem("Media Centre","location='http://glenncardwell.com/media.html'");
    mm_menu_working.hideOnMouseOut=true;

  window.mm_menu_resources = mmLoadAMenu("Resources",150);
    mm_menu_resources.addMenuItem("Free Report","location='http://glenncardwell.com/newsletter.html'");
    mm_menu_resources.addMenuItem("Books","location='http://fsplugins.com/shopwindow/glenn/Books'");
    mm_menu_resources.addMenuItem("E-Books","location='http://fsplugins.com/shopwindow/glenn/E-Books'");
    mm_menu_resources.addMenuItem("Articles","location='http://glenncardwell.com/articles.html'");
    mm_menu_resources.addMenuItem("Newsletter","location='http://glenncardwell.com/newsletter.html'");
    mm_menu_resources.addMenuItem("Blog","location='http://glenncardwell.com/blog.html'");
    mm_menu_resources.addMenuItem("Podcast","location='http://glenncardwell.com/podcast.html'");
    mm_menu_resources.addMenuItem("Nutrition Tips","location='http://glenncardwell.com/newsletter.html'");
    mm_menu_resources.hideOnMouseOut=true;

   mm_menu_about.writeMenus();
}


