/**********************************
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)
 { 
 this.menu=menu;    // Which menu
 this.head=head;    // Title of Category
 this.page=page;    // Link

 }
 
var menuItems = new Array(); 
menuItems[menuItems.length] = new menuItem('Profile', 'Pretium Packaging Profile', prefix + 'CompanyProfile/GeneralProfile.asp', 0); 
menuItems[menuItems.length] = new menuItem('Profile', 'Novapak Products', prefix + 'CompanyProfile/CompanyHistory.asp', 0); 
menuItems[menuItems.length] = new menuItem('Profile', 'Airopak Products', prefix + 'CompanyProfile/AiropakProfile.asp', 0); 
menuItems[menuItems.length] = new menuItem('Profile', 'Marpac Products', prefix + 'CompanyProfile/MarpacProfile.asp', 0); 

menuItems[menuItems.length] = new menuItem('Products', 'Stock Containers', prefix + 'Products/StockContainers/default.asp', 0); 
menuItems[menuItems.length] = new menuItem('Products', 'On the Floor Inventory Program', prefix + 'Products/StockContainers/ContainersInstock.asp', 0); 
menuItems[menuItems.length] = new menuItem('Products', 'PET Preforms', prefix + 'Products/PETPreforms.asp', 0); 
menuItems[menuItems.length] = new menuItem('Products', 'PET Hot Fill', prefix + 'Products/StockContainers/ContainersByResin.asp?resin=PET-HOT%20FILL', 0); 
menuItems[menuItems.length] = new menuItem('Products', 'Stock and Custom Capabilities', prefix + 'Products/Capabilities/default.asp', 0); 

menuItems[menuItems.length] = new menuItem('Products', 'Standard Offering/ Optional Services', 'javascript:popWinResize("'+prefix+'Products/Pretium_StandardOffering_01.pdf",500,400);', 0); 
// menuItems[menuItems.length] = new menuItem('News', 'Special Sales', prefix + 'News/SpecialSales.asp', 0); 
menuItems[menuItems.length] = new menuItem('News', 'Press Releases', prefix + 'News/PressReleases/default.asp', 0); 
menuItems[menuItems.length] = new menuItem('News', 'Trade Shows', prefix + 'News/TradeShows.asp', 0);
menuItems[menuItems.length] = new menuItem('News', 'Articles', prefix + 'News/Articles/default.asp', 0);
menuItems[menuItems.length] = new menuItem('News', 'Employment Opportunities', prefix + 'News/Employment.asp', 0);