<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	THE FOLLOWING ARE THE ONLY VARIABLES AND ARRAY THAT WILL NEED TO BE CHANGED
	//
	
	var tableWidth = 725;				// 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 = 725;				// 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( 
									[0,0,0,0,0,0],
										[101,	[["　家用台式电脑","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=87"],
											["　商用台式电脑","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=109"], 
											["　笔记本电脑","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=114"], 
											["　服务器 存储","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=115"], 
											["　外设 耗材","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=116"], 
											["　数码产品","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=117"], 
											["　服务产品","http://appserver.lenovo.com.cn/product/channel/product_catalog.asp?catalogid=227"], 
											["　联想手机","http://www.lenovomobile.com"]],98], 
										[201, 	[["　标准服务","http://www.lenovo.com.cn/Support/Policy/"], 
											["　自助服务","http://www.lenovo.com.cn/Support/selfservice/"], 
											["　知识培训","http://faq.lenovo.com.cn:81/knowledge"], 
											["　互动服务","http://www.lenovo.com.cn/Support/onlineservice/"]],				98],
										[301, 	[["　阳光易购","http://shop.lenovo.com.cn"], 
											["　阳光行动","http://appserver.lenovo.com.cn/Community/Sun/sun_action.asp"], 
											["　阳光 E刊","http://appserver.lenovo.com.cn/Community/Sun/Sun_magazine.asp"], 
											["　阳光会员","http://appserver.lenovo.com.cn/Community/Sun/sun_member.asp"]],              97],
										[301,	[["　公司概览","http://www.lenovo.com.cn/About/lenovo/company1959.shtml"],
										    ["　新闻中心","http://www.lenovo.com.cn/About/news/"], 
											["　联想与奥运","http://www.lenovo.com.cn/About/olympic/default.shtml"], 
											["　加入联想","http://jobs.lenovo.com/lenovo/"]], 		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;
// -->