function fwLoadMenus() {
  if (window.fw_menu_0) return;
  // HEX VALUES AFTER TEXT STYLES REFER TO COLORS FOR "TEXT OFF", "TEXT ON", "BACKGROUND OFF", "BACKGROUND ON"
  
  // About

  // Services
  window.fw_menu_1 = new Menu("root",270,17,"Verdana, Arial, Helvetica, sans-serif",10,"white","#285725","#285725","#EFF3D8");
  fw_menu_1.addMenuItem("Group Benefit Products","location='services_groupprod.html'");
  fw_menu_1.addMenuItem("Group Benefit Services","location='services_group.html'");
  fw_menu_1.addMenuItem("Client Services & Forms","location='services_forms.html'");
  fw_menu_1.addMenuItem("HR Solutions","location='services_hr.html'");
  fw_menu_1.addMenuItem("Individual Health Plan for Adults and Children","location='services_individual.html'");
  fw_menu_1.addMenuItem("Medicare Supplemental Products","location='services_medicare.html'");
  fw_menu_1.addMenuItem("Request a Quote","location='services_requestquote.html'");
  fw_menu_1.hideOnMouseOut=true;
  // Our Team
  // Resources
window.fw_menu_4 = new Menu("root",140,17,"Verdana, Arial, Helvetica, sans-serif",10,"white","#285725","#285725","#EFF3D8");
  fw_menu_4.addMenuItem("Insurance Companies","location='carrier_matrix.html'");
  fw_menu_4.addMenuItem("Legislative Links","location='res_legis.html'");
  fw_menu_4.addMenuItem("Health Newsletters","location='res_newsletters.html'");
  fw_menu_4.addMenuItem("FAQs","location='res_faqs.html'");
  fw_menu_4.addMenuItem("Wellness","location='res_wellness.html'");
  fw_menu_4.hideOnMouseOut=true;
// Contact  
  fw_menu_4.writeMenus();
}


function centerMenu(menunum, menuoffsetX, menuoffsetY){
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  if (myWidth < 800){
  myWidth = 800;
  }
  //window.alert( 'Width = ' + myWidth );
  //window.alert( 'Height = ' + myHeight );
	pagecenter = Math.floor(myWidth/2);
	myX = pagecenter + menuoffsetX;
	eval("window.FW_showMenu(window.fw_menu_" + menunum + "," + myX +"," + menuoffsetY + ");");
}