/**
 * fw_menu 24OCT2000 Version 4.0
 * John Ahlquist, October 2000
 * Copyright (c) 2000 Macromedia, Inc.
 *
 * based on menu.js
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 *
 * item menu = 5 for the left side nav menu for fuel gas site modified by VTi Feb 2003.
 * item menu = 50 for fuel gas site design menu added by VTi Feb 2003.
 */

function fwLoadMenus() {

   
  if (window.fw_menu_10) return;
  
  window.fw_menu_1 = new Menu("root",134,30);
  fw_menu_1.addMenuItem("Crown","location='kitchencrown.htm'");
  fw_menu_1.addMenuItem("Rot Punkt","location='kitchenrotpunkt.htm'");
  fw_menu_1.hideOnMouseOut=true;

  window.fw_menu_2 = new Menu("root",134,30);
  fw_menu_2.addMenuItem("Crown","location='bedroomcrown.htm'");
  fw_menu_2.addMenuItem("Carrera","location='bedroomcarrera.htm'");
  fw_menu_2.hideOnMouseOut=true;

  window.fw_menu_4 = new Menu("root",134,30);
  fw_menu_4.addMenuItem("Suppliers","location='suppliers.htm'");
  fw_menu_4.hideOnMouseOut=true;

  fw_menu_4.writeMenus();
} // fwLoadMenus()

