<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	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 = 6	// 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 == "pvlakwbd02.pvmsd.pactiv.com")
	{
		linkName = "http://localhost/PactivAsia/";
	}
	else if(chrServer == "pactivcomdev.pactiv.com" || chrServer == "pactivcomdev")
	{
		linkName = "http://" + chrServer + "/PactivAsia/";
	}
	else
	{
		linkName = "http://www.pactiv.com/PactivAsia/";
	}
	
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	var dropDownArray = new Array( 
									[82,	[["&nbsp;Management Team",linkName + "ManagementTeam.aspx","self"], 
										 	["&nbsp;Our Offices",linkName + "Offices.aspx","self"],
											["&nbsp;Visit Pactiv Corporation","http://www.pactiv.com","self"]], 150],
									[256, 	[["&nbsp;Product Gallery",linkName + "Product_Gallery.aspx","self"], 
											["&nbsp;Product Design",linkName + "Product_Design.aspx","self"], 
											["&nbsp;Quality Achievements",linkName + "Quality_Achievements.aspx","self"], 
											["&nbsp;Contact Us",linkName + "Contactus.aspx","self"]], 155]
								);
	// 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;
// -->