// JavaScript Code for Dropdown Menus
// This file controls the presentation and linking in all occurrences of dropdown menus

function fwLoadMenus() {
  if (window.fw_menu_0) return;
  // MEMBERS ONLY Menu (menu 0)
  // Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
  window.fw_menu_0 = new Menu("root",170,20,"Verdana, Arial, Helvetica, sans-serif",12,"#669966","#ffffff","#ffffff","#669966");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_0.addMenuItem("job listings","location='/jobnet.html'");
  fw_menu_0.addMenuItem("member database","location='/memdir/memdir_login.cfm'");
  fw_menu_0.addMenuItem("vendor directory","location='/onlres/vend/vend_login.cfm'");
    // Font and interaction
   fw_menu_0.fontWeight="normal";
   fw_menu_0.hideOnMouseOut=true;
   
   // ABOUT WID Menu (menu 1)
  // Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
  window.fw_menu_1 = new Menu("root",320,20,"Verdana, Arial, Helvetica, sans-serif",12,"#669966","#ffffff","#ffffff","#669966");
  // Menu items and hyperlinks (menu item text, hyperlink)
fw_menu_1.addMenuItem("meet the president of wid","location='../joiwid/usha_pasi.html'");
fw_menu_1.addMenuItem("board and committees","location='../boadir.html'");
fw_menu_1.addMenuItem("faces of wid","location='../about/faces.html'");
fw_menu_1.addMenuItem("sponsorship and advertising opportunities","location='../about/sponsorship.html'");
  
    // Font and interaction
   fw_menu_1.fontWeight="normal";
   fw_menu_1.hideOnMouseOut=true;
   
   // JOIN WID Menu (menu 2)
  // Location and appearance (menu level, menu width, menu item height, font-type, font-size, font-color, font-color on mouse over, background-color, background-color on mouse over)
  window.fw_menu_2 = new Menu("root",300,20,"Verdana, Arial, Helvetica, sans-serif",12,"#669966","#ffffff","#ffffff","#669966");
  // Menu items and hyperlinks (menu item text, hyperlink)
fw_menu_2.addMenuItem("frequently asked questions about wid","location='../joiwid/faq.html'");
fw_menu_2.addMenuItem("benefits of membership","location='../joiwid/mem_benefits.html'");
fw_menu_2.addMenuItem("membership application","location='http://members.widgb.org/source/members/cmemberinsert.cfm'");
fw_menu_2.addMenuItem("member services committee","location='../com.html'");
  
    // Font and interaction
   fw_menu_2.fontWeight="normal";
   fw_menu_2.hideOnMouseOut=true;

  fw_menu_2.writeMenus();

}
// End
