function fwLoadMenus() 
{
  if (window.fw_menu_0) return;


// About

// This line declares the meniu associated with the first section header
// ITs parameters are
// - root = the root of the menu system
// - 160 = the width of the associated rectangle
// - 17 = the height of the associated rectangle
// - "Verdana, Arial, Helvetica, sans-serif" = the font face to be used
// - 12 = the font height to be used
// - "#FFFFFF" = the normal text color 
// - "#0033CC" = the onmouseover text color 
// - "#002868" = the normal background color 
// - "#CCCCCC" = the onmouseover background color 
// -  fw_menu_1.addMenuSeparator(); ==menu sperator

// Company
  window.fw_menu_0 = new Menu("root",105,18,"Arial,sans-serif",10,"#FFFFFF","#0033CC","#663366","#CCCCCC");
  fw_menu_0.addMenuItem(">Overview","location='http://www.soleng.com/company/overview.html'");
  fw_menu_0.addMenuItem(">Awards","location='http://www.soleng.com/company/awards.html'");
  fw_menu_0.addMenuItem(">Careers","location='http://www.soleng.com/company/careers.html'");
  fw_menu_0.addMenuItem(">Contact","location='http://www.soleng.com/company/contact.html'");
  fw_menu_0.hideOnMouseOut=true;

// Customers
  window.fw_menu_1 = new Menu("root",140,18,"Arial,sans-serif",10,"#FFFFFF","#0033CC","#663366","#CCCCCC");
  fw_menu_1.addMenuItem(">Profile","location='http://www.soleng.com/customers/cust_profile.html'");
  fw_menu_1.addMenuItem(">Past Performance","location='http://www.soleng.com/customers/past_perf.html'");
  fw_menu_1.addMenuItem(">Agencies and Companies","location='http://www.soleng.com/customers/customers.html'");
  fw_menu_1.hideOnMouseOut=true;

// Services
  window.fw_menu_2 = new Menu("root",140,18,"Arial,sans-serif",10,"#FFFFFF","#0033CC","#663366","#CCCCCC");
  fw_menu_2.addMenuItem(">Capabilities Summary","location='/services/index.html'");
  fw_menu_2.addMenuItem(">Our Process","location='http://www.soleng.com/services/process.html'");
  fw_menu_2.addMenuItem(">Our People","location='http://www.soleng.com/services/people.html'");
  fw_menu_2.addMenuItem(">White Papers","location='http://www.soleng.com/services/whitepapers/white.html'");
  fw_menu_2.addMenuItem(">Partners","location='http://www.soleng.com/services/partners.html'");
  fw_menu_2.hideOnMouseOut=true;

// News
  window.fw_menu_3 = new Menu("root",100,18,"Arial, sans-serif",10,"#FFFFFF","#0033CC","#663366","#CCCCCC");
  fw_menu_3.addMenuItem(">White Papers","location='http://www.soleng.com/services/whitepapers/white.html'");
  fw_menu_3.addMenuItem(">Releases","location='http://www.soleng.com/news/index.html'");
  fw_menu_3.addMenuItem(">Careers","location='http://www.soleng.com/company/careers.html'");
  fw_menu_3.hideOnMouseOut=true;






  fw_menu_3.writeMenus();
} // fwLoadMenus()





