<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "images/";	
	var tableWidth = 642;				// The size of the top navigation table
	var delay = 100;					// The length of time to hide the previous layer
	var offsetWidth = 89;				// This is the width between the start of the table to the top navigation
	var layoutSize = 642;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#504E4D";				// The roll off/default color for the table cell
	var tdOn = "#828181";				// The roll over color for the table cell
	var lineSeperatorColor = "#FFFFFF";	// 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 = "#EEEEEE";		// 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
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	var dropDownArray = new Array( 
									[0,		[[""]], 		0],
									
									[41, 	[["&nbsp;&nbsp;VISIONARY","abt_us.htm", ""],
											["&nbsp;&nbsp;BRAND","abt_us_brand.htm", ""],
											["&nbsp;&nbsp;CREDENTIALS","abt_us_credentials.htm", ""],
											["&nbsp;&nbsp;MILESTONES","abt_us_milestones.htm", ""],			
									 		["&nbsp;&nbsp;AWARDS & CERTIFICATION","abt_us_awards.htm", ""]],			150],

									[0,		[[""]], 		0],
									
									[276, 	[[""]], 		117],
											
									
									
									
									[395, 	[["&nbsp;&nbsp;RETAIL","../consumer/index.asp", ""],
											["&nbsp;&nbsp;COMMERCIAL","../corporate/wholesale_promo1.asp", ""]],			117],
											
									[514, 	[["&nbsp;&nbsp;JOB VACANCIES","career_jobs.asp", ""]], 		117]
								);
	// 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;
// -->