<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "/isecurity/site/images/";	
	var tableWidth = 726;				// 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 = 726;				// 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 = "#DED6CF";				// 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 = "#806A50";		// 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
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	//change height of menu:  go to style.css n locate dropdownindex
	var dropDownArray = new Array( 
									[0,		[["","","",""]], 		10],		
									[84,	[["Indonesia","/isecurity/site/program_id/index.html", ""],
											["Malaysia","/isecurity/site/program_my/index.html", ""],
											["Philippines","/isecurity/site/program_ph/index.html", ""]], 		114],
									[202,	[["All Speakers","/isecurity/site/speakers.html", ""],
											["Indonesia","/isecurity/site/speaker_id.html", ""],
											["Malaysia","/isecurity/site/speaker_my.html", ""],
											["Philippines","/isecurity/site/speaker_ph.html", ""]], 		114]

								);
	// 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;
// -->