/********************************** The following section is where we define all the Pull Down Menu's that will be used within the site. The Array MenuItems is where all the menu data is kept. To add a menu simply follow this format: menuItems[menuItems.length] = new MenuItem('Menu1', 'Header1', 'Link', 1) The first argument defines the name of the Menu. The second argument is the Link Text, and the third argument is the actually hyper link. The fourth argument determines if the link should be active or not, since we can still show "dead" links. To actually call draw the menu's see the function "drawMenus()" ***********************************/ function menuItem(menu, head, page, bIndent) { this.menu=menu; this.head=head; this.page=page; this.bIndent=bIndent; } var menuItems = new Array(); menuItems[menuItems.length] = new menuItem('Products', 'Flexible Spiralförderer', '/products/FlexibleScrewConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bev-Con™ Förderanlagen', '/products/BevConConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Pneumatische Förderanlagen für Dünnstromförderung', '/products/PneumaticConveyingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'BIG-BAG-Entleeranlagen', '/products/BulkBagDischargers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Gewichtsdosierungs- und Mischanlagen', '/products/WeighBatchingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'BIG-BAG-Befüllanlagen', '/products/BulkBagFillers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'BAG-Entleerstationen', '/products/BagDumpStations/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Fasskippgeräte', '/products/DrumDumpers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Kundenspezifische Systeme', '/products/EngineeredSystems/index.asp', 0); // Articles Menu menuItems[menuItems.length] = new menuItem('Articles', 'Case Histories', '/Articles/CaseHistories/index.asp', 0); menuItems[menuItems.length] = new menuItem('Articles', 'Technical Articles', '/Articles/technical/index.asp', 0);