/********************************** 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', 'Transportadores sinfín Flexibles', '/products/FlexibleScrewConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Transportadores Bev-Con™', '/products/BevConConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Sistemas de Transportadores Neumáticos', '/products/PneumaticConveyingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Descargadores de Bolsas a Granel', '/products/BulkBagDischargers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Sistemas de Procesamiento por Lotes por Peso', '/products/WeighBatchingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Llenadores de Bolsas a Granel', '/products/BulkBagFillers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Estaciones de Descarga de Bolsas', '/products/BagDumpStations/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Volcadores de Barriles', '/products/DrumDumpers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Sistemas Hechos a la Medida', '/products/EngineeredSystems/index.asp', 0);