<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
//*******************************************************************************
//	SERVER PATH HERE
	
	server_path = "http://www.parksonsgames.com/";
	//server_path = "http://192.168.1.100/dev/parksons/";
	//var basepath = "images/";	
	var tableWidth = 779;				// The size of the top navigation table
	var delay = 500;				// The length of time to hide the previous layer
	var offsetWidth = 2;				// This is the width between the start of the table to the topnav
	var layoutSize = 779;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#000";				// The roll off/default color for the table cell
	var tdOn = "#2F0302";				// The roll over color for the table cell
	var lineSeperatorColor = "#2F0302";	// 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 = "#99352A";		// 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 = 10	// Total amount of images on top nav
	var screen_width = screen.width;
	//screen resolution with in array here
	/*if(screen_width == '1024') {
		width1 = 12;  
		width2 = 177;
		width3 = 307;
	} else if(screen_width == '800') {
		width1 = -20;  
		width2 = 177;
		width3 = 307;
	} else if(screen_width == '1152') {
		width1 = -85;  
		width2 = 60;
		width3 = 192;
	}else if(screen_width == '1280') {
		width1 = -150;  
		width2 = 2;
		width3 = 128;
	} else {
		width1 = 12;  
		width2 = 177;
		width3 = 307;
	} */

	if(screen_width == '1024') {
		width1 = 167;  
		width2 = 273;
		width3 = 391;
		} else if(screen_width == '800') {
		width1 = 280;  
		width2 = 384;
		width3 = 505;
	} else if(screen_width == '1152') {
		width1 = 103;  
		width2 = 209;
		width3 = 328;
	}else if(screen_width == '1280') {
		width1 = 40;  
		width2 = 145;
		width3 = 264;
	} else {
		width1 = 12;  
		width2 = 177;
		width3 = 307;
	}
	
	
	//////////////////////////////////////////////////////////////////////////////////////
	//////////////////////  INSTRUCTIONS	/////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////////////////////
	//PLEASE DO NOT CHANGE THE ORDER OF "dropDownArray" ARRAY

	var dropDownArray = new Array( 
										[-100,	[["Who we are","#"], 
											["Our Mission / Motto","#"], 
											["Our Leadership / Ace","#"]],	103],

										[width1,	[["State-of-the-Art Technology", server_path+"infrastructure/technology/index.php"],
											["Quality Control", server_path+"infrastructure/quality-control/index.php"],
											["Client Relationships", server_path+"infrastructure/client-rel/index.php"],
											["Partner With Us", server_path+"infrastructure/partner/index.php"]],	141],
								
										[width2,	[["Card Sizes", server_path+"playing-cards/sizes/index.php"], 
												["Card Faces", server_path+"playing-cards/faces/index.php"],
												["Card Qualities", server_path+"playing-cards/qualities/index.php"],
												["Coatings / Varnishes", server_path+"playing-cards/coatings-varnishings/index.php"],
												["Card Designs", server_path+"playing-cards/designs/index.php"],
												["Card Packaging", server_path+"playing-cards/packaging/index.php"]],	152],
										
										[width3,   [["Tourism", server_path+"special/tourism/index.php"],
												["Special Occasions", server_path+"special/occasions/index.php"],
												["Learning Aids", server_path+"special/learning-aids/index.php"]],		100]

							);



	// 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;
// -->