<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "images/buttons/";	
	var tableWidth = 761;				// The size of the top navigation table
	var dropdelay = 500;					// The length of time to hide the previous layer
	var offsetWidth = 0;				// This is the width between the start of the table to the top navigation
	var layoutSize = 761;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#F5f7f7";				// The roll off/default color for the table cell
	var tdOn = "#dddddd";				// The roll over color for the table cell
	var lineSeperatorColor = "#CCCCCC";	// This is the color of the line that seperated the links in the layer
	var border = true;					// Show border if set to true
	var borderColor = "#9F9F9F";		// This will be the border color around the drop down layers
	var tdClass = "class='dropLinks'";	// Class applied to the links in the table cell
	var tdHeight = "height='20'";		// Height of each table cell
	
	var totalImages = 7	// Total amount of images on top nav
	
	var chrServer = "";
	chrServer = document.domain; //Get the Server Name for creating path
	var linkName = "";
	
	if(chrServer == "localhost" || chrServer == "pvlakwbd06.pvmsd.pactiv.com")
	{
		linkName = "http://localhost/PactivTest/";
	}
	else if(chrServer == "pactivcomdev.pactiv.com" || chrServer == "pactivcomdev" || chrServer == "pvldciwb19" || chrServer == "pvldciwb19.pvmsd.pactiv.com" || chrServer == "pvldciwb19.pactiv.com")
	{
		linkName = "http://pactivcomdev.pactiv.com/";
	}
	else
	{
		linkName = "http://www.pactiv.com/";
	}
	
	
	//alert(chrServer);
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	var dropDownArray = new Array( 
									[47,	[["&nbsp;Company Profile",linkName + "About_Pactiv/CompanyProfile.aspx","self"], 
										 	 ["&nbsp;News",linkName + "NewsRoom.aspx","self"],
											 ["&nbsp;Investor Information",linkName + "Investor_Relations/index.aspx","self"],
											 ["&nbsp;Governance",linkName + "Investor_Relations/Governance/index.aspx","self"],
											 ["&nbsp;Cultural Principles",linkName + "About_Pactiv/Cultural_Principles.aspx","self"],
											 ["&nbsp;Statement of Business Principles",linkName + "About_Pactiv/StmtOfBusPrinciples.aspx","self"],
											 ["&nbsp;Pactiv Careers",linkName + "Career/index.aspx","self"],
											 ["&nbsp;Diversity",linkName + "Career/diversity.aspx","self"],
											 ["&nbsp;Sustainability",linkName + "About_Pactiv/Sustainability.aspx","self"],
											 ["&nbsp;Contact Us",linkName + "Contact/contact.aspx","self"]], 		40],
									[140,	[["&nbsp;Hefty&#174; Consumer Products","http://www.heftybrands.com","self"],
											 ["&nbsp;Foodservice/Food Packaging",linkName + "Products_NA/Foodservice/index.aspx","self"],
											 ["&nbsp;Egg packaging","http://s7d5.scene7.com/s7/brochure/flash_brochure.jsp?company=Pactiv&sku=Egg%20Packaging&config=Pactiv/Pactivdefault&locale=en"],
											 ["&nbsp;Building Products","http://www.green-guard.com","self"],
											 ["&nbsp;Slide-Rite&#174; Zipper Technology",linkName + "Products_NA/SlideRite/index.aspx","self"],
											 ["&nbsp;Products Available in Europe",linkName + "Products_Europe/MouldedFibre/index.aspx","self"],
											 ["&nbsp;Products Available in Asia",linkName + "PactivAsia/index.aspx","self"]],	40],  
									[208, 	[["&nbsp;Transfer Agent",linkName + "Investor_Relations/index.aspx","self"],
											 ["&nbsp;Executives",linkName + "Investor_Relations/Executives/index.aspx","self"], 
											 ["&nbsp;Financial Press Releases",linkName + "Investor_Relations/Financial_Press_Releases/index.aspx","self"], 
											 ["&nbsp;Presentations",linkName + "Investor_Relations/Presentation.aspx","self"], 
											 ["&nbsp;Analyst Coverage",linkName + "Investor_Relations/Analyst_Coverage.aspx","self"], 
											 ["&nbsp;SEC Filings","http://phx.corporate-ir.net/phoenix.zhtml?c=107933&p=irol-sec"], 
											 ["&nbsp;Governance",linkName + "Investor_Relations/Governance/index.aspx","self"], 
											 ["&nbsp;Fundamentals","http://phx.corporate-ir.net/phoenix.zhtml?c=107933&p=irol-fundSnapshot"], 
											 ["&nbsp;Annual Reports",linkName + "Investor_Relations/Annual_Report/index.aspx","self"], 
											 ["&nbsp;Proxy Statement",linkName + "Investor_Relations/Proxy_Statement.aspx","self"],
											 ["&nbsp;Annual Meeting Election Results",linkName + "Investor_Relations/Annual_Meeting.aspx","self"], 
											 ["&nbsp;Document Request",linkName + "Investor_Relations/Printed_Materials_Request_Form.aspx","self"]],	50],
									[424, 	[["&nbsp;Overview",linkName + "Career/overview.aspx","self"],
											 ["&nbsp;The Pactiv Attitude",linkName + "Career/attitude.aspx","self"],
											 ["&nbsp;Working at Pactiv",linkName + "Career/working.aspx","self"],
											 ["&nbsp;Diversity",linkName + "Career/diversity.aspx","self"],
											 ["&nbsp;Career Opportunities",linkName + "Career/opportunities.aspx","self"]],	40],
									[486, 	[["&nbsp;Sustainability",linkName + "About_Pactiv/Sustainability.aspx","self"],
											 ["&nbsp;Environmental",linkName + "About_Pactiv/Environmental.aspx","self"],
											 ["&nbsp;Social Responsibility",linkName + "About_Pactiv/Social.aspx","self"],
											 ["&nbsp;Sustainable Business Practices",linkName + "About_Pactiv/Commitment.aspx","self"],
											 ["&nbsp;Life Cycle Inventory",linkName + "About_Pactiv/LifeCycleAnalysis.aspx","self"],
											 ["&nbsp;What you should know about Plastics",linkName + "About_Pactiv/Plastics.aspx","self"]],	40]
									);
	// HOW TO CALL AN INDEX OF THE ARRAY:								
	//dropDownArray[0][0] = Left Position;
	//dropDownArray[0][2] = num;
	//dropDownArray[0][1][0][0] = link Text;
	//dropDownArray[0][1][0][1] = actual link;
// -->