/********************************** 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', prefix + 'products/FlexibleScrewConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Flexible Screw Conveyors/
Difficult Material', prefix + 'products/BevConConveyors/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Pneumatic Conveyors', prefix + 'products/PneumaticConveyingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Dischargers', prefix + 'products/BulkBagDischargers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Conditioners', prefix + 'products/BulkBagConditioners/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bulk Bag Fillers', prefix + 'products/BulkBagFillers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Bag Dump Stations', prefix + 'products/BagDumpStations/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Drum & Tote Dumpers', prefix + 'products/DrumDumpers/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Weigh Batching Systems', prefix + 'products/WeighBatchingSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Sanitary Equipment', prefix + 'products/SanitaryEquipment/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Engineered Systems', prefix + 'products/EngineeredSystems/index.asp', 0); menuItems[menuItems.length] = new menuItem('Products', 'Programmable Controls', prefix + 'products/Controls/index.asp', 0); // Articles Menu menuItems[menuItems.length] = new menuItem('Articles', 'Case Histories', prefix + 'Articles/CaseHistories/index.asp', 0); menuItems[menuItems.length] = new menuItem('Articles', 'Technical Articles', prefix + 'Articles/technical/index.asp', 0); /* menuItems[menuItems.length] = new menuItem('Case', 'Adhesives Manufacturer', prefix + 'Articles/histories/adhesives.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Ant Bait Producer', prefix + 'Articles/histories/ant_bait.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Aquarium Chemicals', prefix + 'Articles/histories/aquarium.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Chemical Dye Manufacturer', prefix + 'Articles/histories/chem_dye.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Chip- Additive Manufacturer', prefix + 'Articles/histories/chip_add.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Coatings Producer', prefix + 'Articles/histories/coatings.asp', 0); menuItems[menuItems.length] = new menuItem('Case', 'Fine China Manufacturer', prefix + 'Articles/histories/fine.asp', 0); menuItems[menuItems.length] = new menuItem('Case', '(more...)', prefix + 'Articles/histories/index.asp', 0); menuItems[menuItems.length] = new menuItem('Case', '(more...)', prefix + 'Articles/histories/index.asp', 0); */ // Here we are going to determine what to put in the Get Quote Menu menuItems[menuItems.length] = new menuItem('Quote', 'New Account', prefix + 'info/index.asp', 0);menuItems[menuItems.length] = new menuItem('Quote', 'Retrieve Old Account', prefix + 'info/retrieve.asp', 0);