function mmLoadAMenu(label, mw)
{
  return new Menu(
    label,
    mw,
    30,						// Item height in pixels
    "Arial, Verdana, Helvetica, sans-serif",	// Font
    11,						// Font size
    "#bcbec0",					// Font colour
    "#ffffff",					// Font colour mouseover
    "#000000",					// Background colour
    "#bcbec0",					// 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_about = mmLoadAMenu("About Us",117);
    mm_menu_about.addMenuItem("Ricky Nowak","location='http://www.rickynowak.com/rickynowak.html'"); 
    mm_menu_about.addMenuItem("Client List","location='http://www.rickynowak.com/client_list.html'");
    mm_menu_about.addMenuItem("Testimonials","location='http://www.rickynowak.com/testimonials.html'");
    mm_menu_about.addMenuItem("Ricky Live","location='http://www.rickynowak.com/rickylive.html'");
    mm_menu_about.hideOnMouseOut=true;

  window.mm_menu_leadership = mmLoadAMenu("Leadership",140);
    mm_menu_leadership.addMenuItem("Leadership & Management","location='http://www.rickynowak.com/leadership-management.html'");
    mm_menu_leadership.addMenuItem("Conference Speaker","location='http://www.rickynowak.com/conferencespeaker.html'");
    mm_menu_leadership.addMenuItem("Trainer & Facilitator","location='http://www.rickynowak.com/trainer-facilitator.html'");
    mm_menu_leadership.addMenuItem("Emerging Leaders","location='http://www.rickynowak.com/emergingleaders.html'");
    mm_menu_leadership.addMenuItem("Middle Management","location='http://www.rickynowak.com/middlemanagement.html'");
    mm_menu_leadership.addMenuItem("Senior Management","location='http://www.rickynowak.com/seniormanagement.html'");
    mm_menu_leadership.hideOnMouseOut=true;

  window.mm_menu_coaching = mmLoadAMenu("Coaching",165);
    mm_menu_coaching.addMenuItem("Leadership Development","location='http://www.rickynowak.com/leadershipdevelopment.html'");
    mm_menu_coaching.addMenuItem("Effective Communication Skills","location='http://www.rickynowak.com/communicationskills.html'");
    mm_menu_coaching.addMenuItem("Presentation Skills","location='http://www.rickynowak.com/presentationskills.html'");
    mm_menu_coaching.hideOnMouseOut=true;


  window.mm_menu_learning = mmLoadAMenu("Learning Development",165);
    mm_menu_learning.addMenuItem("Management Training","location='http://www.rickynowak.com/managementtraining.html'");
    mm_menu_learning.addMenuItem("Online Courses","location='http://www.rickynowak.com/onlinecourses.html'");
    mm_menu_learning.addMenuItem("Personal Development Tools","location='http://www.rickynowak.com/personaldevelopmenttools.html'");
    mm_menu_learning.addMenuItem("Books","location='http://www.rickynowak.com/books.html'");
    mm_menu_learning.addMenuItem("eBooks","location='http://www.rickynowak.com/ebooks.html'");
    mm_menu_learning.addMenuItem("CDs","location='http://www.rickynowak.com/audio_cds.html'");
    mm_menu_learning.addMenuItem("Management Training Courses","location='http://www.rickynowak.com/managementtrainingcourses.html'");
    mm_menu_learning.addMenuItem("Leadership News","location='http://www.rickynowak.com/leadershipnews.html'");
    mm_menu_learning.addMenuItem("Blog","location='http://rickyknowsleadership.blogspot.com'");
    mm_menu_learning.hideOnMouseOut=true;

    mm_menu_about.writeMenus();
}


