<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var tableWidth = 733;				// The size of the top navigation table
	var delay = 100;					// The length of time to hide the previous layer
	var offsetWidth = 144;				// This is the width between the start of the table to the top navigation
	var layoutSize = 733;				// This is the width of the entire site
	
	// This is where you change the table cells attributes
	var tdOff = "#5293D1";				// The roll off/default color for the table cell
	var tdOn = "#1D7FDB";				// The roll over color for the table cell
	var lineSeperatorColor = "#397DBD";	// 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 = "#397DBD";		// 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( 
									[1,2,3,4,0,0],
										[101,	[["　EMERSON空调","/html/sort/001_1_1.Html"],
											["　大金空调系列","/html/sort/002_1_1.Html"], 
											["　加湿产品系列","/html/sort/003_1.Html"], 
											 
											["　监控产品系列","/html/sort/004_1.Html"]],98], 
										[201, 	[["　天云服务","/support/tyfw/#1"], 
											["　自助服务","/support/auto/download.asp"], 
											["　知识培训","/html/support/C1_1.html"], 
											["　互动服务","/bbs/"]],				98],	
										[301,	[["　空调及厂家","/Service/changjia.asp"],
										    ["　制冷配件","/html/sort/005_1.html"], 
											["　制冷技术","/html/Service/D2_1.html"], 
											["　解决方案","/html/Service/D3_1.html"]], 		130],
										
										[401, 	[["　公司概览","/about/air-world/"], 
											["　公司新闻","/html/news/news.html"], 
											["　人在天云","/about/in_air-world/"], 
											["　加入天云","/about/join/"]],				98]
										
								);
	// 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;
// -->