/********************************** 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 Screw Conveyors', '/us/products/flexiblescrewconveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Flexible Screw Conveyors/
Difficult Material', '/us/products/bevconconveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Pneumatic Conveyors', '/us/products/pneumaticconveyingsystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Dischargers', '/us/products/bulkbagdischargers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Conditioners', '/us/products/bulkbagconditioners/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Fillers', '/us/products/bulkbagfillers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bag Dump Stations', '/us/products/bagdumpstations/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Drum-Box-Tote Dumpers', '/us/products/drumdumpers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Weigh Batching Systems', '/us/products/weighbatchingsystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Sanitary Equipment', '/us/products/sanitaryequipment/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Engineered Systems', '/us/products/engineeredsystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Programmable Controls', '/us/products/controls/index.asp', 0); menuItems[menuItems.length] = new menuItem('Articles', 'Case Histories', '/us/articles/casehistories/index.asp', 0); menuItems[menuItems.length] = new menuItem('Articles', 'Technical Articles', '/us/articles/technical/index.asp', 0); menuItems[menuItems.length] = new menuItem('News', 'Press Releases', '/us/news/index.asp', 0);