<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "pictures/";	
	var tableWidth = 518;				// The size of the top navigation table
	var delay = 100;					// 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 = 518;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#FFFFFF";				// The roll off/default color for the table cell
	var tdOn = "#5694D4";				// The roll over color for the table cell
	var lineSeperatorColor = "#333333";	// 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 = "#333333";		// 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,		[["","","",""]], 		10],		
									[0,		[["","","",""]], 		10],		
									[281,	[["&nbsp;Consolidation Schedule","LCL SCH.pdf", "target=\"_blank\""],
											["&nbsp;FCL Schedule","FCL SCH.pdf", "target=\"_blank\""],
											["&nbsp;RORO & Breakbulk Schedule","booking.htm",""],
											["&nbsp;Overseas Schedule","FCL JKT.pdf", "target=\"_blank\""], 
											["&nbsp;Shipping Note","Shipping Note.pdf", "target=\"_blank\""], 
											["&nbsp;Cargo Tracking <font color=#FF0000><i>*coming soon*</i></font>","#",""], 
											["&nbsp;Online Booking Form","booking.htm",""],
											["&nbsp;Online Enquiry Form","enquiry.htm",""]], 		150],
									[0,		[["","","",""]], 		10],		
									[473,	[["&nbsp;Equipment","equipment.htm",""], 
											["&nbsp;Glossary","glossary.htm",""], 
											["&nbsp;Incoterms","incoterm.htm",""],
											["&nbsp;Standard Trading <br>&nbsp;&nbsp;Conditions","Standard Trading Condition.pdf", "target=\"_blank\""]], 		100],	
									[570,	[["&nbsp;Enquiry Form ","enquiry.htm",""], 
											["&nbsp;Location","locations.htm",""]], 		70]	
								);
	// 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;
// -->