function loadMenus() {
    window.mySubMenu01 = new Menu("Electronic Components");
    mySubMenu01.addMenuItem("Resistors", "top.window.location='Resistors.html'");
    mySubMenu01.addMenuItem("Capacitors", "top.window.location='Capacitors.html'");
    mySubMenu01.addMenuItem("Switches", "top.window.location='Switches.html'");
    mySubMenu01.addMenuItem("LED Products", "top.window.location='LEDs.html'");
    mySubMenu01.addMenuItem("Liquid Crystal Displays", "top.window.location='LCDs.html'");
    mySubMenu01.addMenuItem("Connectors/Sockets", "top.window.location='ConnectorsSockets.html'");
    mySubMenu01.addMenuItem("Terminal Blocks", "top.window.location='Other.html'");
    mySubMenu01.addMenuItem("Switching Power Supplies", "top.window.location='Other.html#powersupplies'");
    mySubMenu01.addMenuItem("Fans (miniature)", "top.window.location='Other.html#fans'");
    mySubMenu01.BgColor = "#0000FF";
    mySubMenu01.fontColorHilite = "#FF0000";
    mySubMenu01.menuItemBgColor = "#FFFFFF";
    mySubMenu01.menuItemIndent = 1;
    mySubMenu01.menuHiliteBgColor = "#FFFFFF";

    window.myMenu01 = new Menu("Technologies");
    myMenu01.BgColor = "#0000FF";
    myMenu01.fontColorHilite = "#FF0000";
    myMenu01.menuItemBgColor = "#FFFFFF";
    myMenu01.menuItemIndent = 1;
    myMenu01.menuHiliteBgColor = "#FFFFFF";
    myMenu01.addMenuItem(mySubMenu01);
    myMenu01.addMenuItem("Water Sterilization", "top.window.location='WaterSterilization.html'");
        myMenu01.writeMenus();
}


