<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var basepath = "/img/menu/";	
	var tableWidth = 601;				// The size of the top navigation table
	var delay = 100;					// The length of time to hide the previous layer
	var offsetWidth = 161;				// This is the width between the start of the table to the top navigation
	var layoutSize = 760;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#B2B2B2";				// The roll off/default color for the table cell
	var tdOn = "#D57919";				// The roll over color for the table cell
	var lineSeperatorColor = "#e3e3e3";	// 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 = 5	// Total amount of images on top nav
	
	// [ starting left position, [[text link, actual link],[text link, actual link]], layer width ]
	var dropDownArray = new Array( 
									[8,	[["Desktops","/home/products/hm_dtp_catalog.shtml"], 
											["Notebooks","/home/products/hm_ptb_catalog.shtml"], 
											["Gateway Profile","/home/products/hm_dtp_prf4.shtml"], 
											["Remanufactured","/reman/hm_index.shtml"]], 		100],
									[90, 	[["Operating Systems","/meta_refresh/hm/menu/2_1.asp"], 
											["Games","/meta_refresh/hm/menu/2_2.asp"], 
											["Business","/meta_refresh/hm/menu/2_3.asp"], 
											["Utilities","/meta_refresh/hm/menu/2_4.asp"], 
											["Graphics","/meta_refresh/hm/menu/2_5.asp"], 
											["Communications","/meta_refresh/hm/menu/2_6.asp"]],				100],
									[165, 	[["Printers and Supplies","/meta_refresh/hm/menu/3_1.asp"],
											["Monitors","/meta_refresh/hm/menu/3_2.asp"],
											["Drives and Media","/meta_refresh/hm/menu/3_3.asp"], 
											["Digital Cameras","/meta_refresh/hm/menu/3_4.asp"],
											["MP3 Players","/meta_refresh/hm/menu/3_5.asp"],
											["Networking","/meta_refresh/hm/menu/3_6.asp"],
											["More...","/meta_refresh/hm/menu/3_7.asp"]], 		100],
									[253, 	[["Payment Options","/home/programs/pay_option.shtml"], 
											["Chat with Sales","/home/programs/eadvisor.shtml"],
											["Learning","/training/consumer.shtml"],
											["High-Speed Internet","/home/programs/broadband/index.shtml"], 
											["Damage Protection","/services/protection/index.asp?seg=hm"], 
											["Installation","/home/deals/advertised/housecalls.shtml"], 
											["Recycle Program","/home/programs/recycle.shtml"],  
											["Affiliate Program","/programs/affiliate/index.asp?seg=hm"],
											["AARP","/home/programs/aarp.shtml"]], 		100],
									[320, 	[["Photography","/home/deals/offers/photo/index.shtml"], 
											["Music","/home/deals/offers/music/index.shtml"],
											["Video","/home/deals/offers/video/index.shtml"],
											["Gaming","/home/deals/offers/gaming/index.shtml"],
											["Digital TV","/home/digital/tv/index.shtml"]], 		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;
// -->