/********************************** 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', 'Convoyeurs a vis Flexibles', '/products/FlexibleScrewConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Transporteurs Bev-Con', '/products/BevConConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Systemes de Transport Pneumatique', '/products/PneumaticConveyingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Stations de Vidange de GRVS', '/products/BulkBagDischargers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Systemes de Dosage par Pesee', '/products/WeighBatchingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Systemes de Remplissage de GRVS', '/products/BulkBagFillers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Stations de Vidage de Sacs', '/products/BagDumpStations/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Systemes de Vidage de Fûts', '/products/DrumDumpers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Systemes haute Technologie', '/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);