// 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;

  // ABOUT THE BURNS COMPANIES 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",220,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_0.addMenuItem("Menu item","location='/about.htm'");
   // Font and interaction
   fw_menu_0.fontWeight="normal";
   fw_menu_0.hideOnMouseOut=true;

 // OWNERS REPRESENTATION 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",170,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_1.addMenuItem("Menu item","location='/ownrep.htm'");
   // Font and interaction
   fw_menu_1.fontWeight="normal";
   fw_menu_1.hideOnMouseOut=true;

 // PROPERTY DEVELOPMENT SERVICES 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",190,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_2.addMenuItem("Menu item","location='/propdev.htm'");
   // Font and interaction
   fw_menu_2.fontWeight="normal";
   fw_menu_2.hideOnMouseOut=true;

 // COST MANAGEMENT SERVICECS Menu (menu 3)
  // 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_3 = new Menu("root",170,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_3.addMenuItem("Menu item","location='/costman.htm'");
  // Font and interaction
   fw_menu_3.fontWeight="normal";
   fw_menu_3.hideOnMouseOut=true; 

// QUALITY CONTROL AND COMPLIANCE Menu (menu 4)
  // 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_4 = new Menu("root",210,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_4.addMenuItem("Menu item","location='/quality.htm'");
   // Font and interaction
   fw_menu_4.fontWeight="normal";
   fw_menu_4.hideOnMouseOut=true;

 // PORTFOLIO Menu (menu 5)
  // 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_5 = new Menu("root",215,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_5.addMenuItem("Menu item","location='/portfolio.htm'");
   // Font and interaction
   fw_menu_5.fontWeight="normal";
   fw_menu_5.hideOnMouseOut=true;

 // RESOURCES AND LINKS Menu (menu 6)
  // 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_6 = new Menu("root",215,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_6.addMenuItem("Menu item","location='/links.htm'");
   // Font and interaction
   fw_menu_6.fontWeight="normal";
   fw_menu_6.hideOnMouseOut=true;

 // NEWS AND ARTICLES Menu (menu 7)
  // 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_7 = new Menu("root",215,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_7.addMenuItem("Menu item","location='/news.htm'");
   // Font and interaction
   fw_menu_7.fontWeight="normal";
   fw_menu_7.hideOnMouseOut=true;

 // CONTACT US Menu (menu 8)
  // 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_8 = new Menu("root",215,20,"Verdana, Arial, Helvetica, sans-serif",12,"#000000","#FFFFFF","#FFFFFF","#990000");
  // Menu items and hyperlinks (menu item text, hyperlink)
  fw_menu_8.addMenuItem("Menu item","location='/forms/contact_form.htm'");
   // Font and interaction
   fw_menu_8.fontWeight="normal";
   fw_menu_8.hideOnMouseOut=true;

  fw_menu_8.writeMenus();
}

// End