<!--
	/////////////////////////////////////////////////////////////////////////////////
	//	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 = 128;				// 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 = "#b6c8db";				// The roll off/default color for the table cell
	var tdOn = "#f8f8f8";				// The roll over color for the table cell
	var lineSeperatorColor = "#ffffff";	// 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 = "#ffffff";		// 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 ]
	var dropDownArray = new Array( 
									[0,0,0,0,0,0],
										[-083,	[["　院长致辞","/news/yuan.asp"],
                                                                                        ["　本院简介","/news/jie.asp"], 
											["　领导班子","/news/2.asp"], 
											["　机构设置","/news/3.asp"]],  		98],
                                                                                
                                                                                [021,	[["　诉讼须知","/news/4.asp"], 
											["　文书样式","/news/5.asp"], 
											["　举证须知","/news/6.asp"], 
											["　收费规定","/news/7.asp"]], 	       98],
										
                                                                                [117, 	[["　法院信息","/news/8.asp"], 
											["　新闻中心","/news/9.asp"], 
											["　工作报告","/news/10.asp"]],	        98],

										[216, 	[["　刑事行政案件","/news/11.asp"], 
											["　民事商事案件","/news/12.asp"], 
											["　裁判文书公开","/news/13.asp"],
											["　执行案件","/news/14.asp"]],		98],

										[316, 	[["　审判管理","/news/15.asp"],
										        ["　队伍建设","/news/16.asp"],
                                                                                        ["　司法政务","/news/17.asp"], 
							                                ["　上级规定","/news/1.asp"]],		98],

                                                                                [417, 	[["　法官论坛","/news/18.asp"], 
											["　学习园地","/news/19.asp"], 
											["　先进事迹","/news/20.asp"], 
											["　法官风采","/news/21.asp"]],                 98],

                                                                                [519,	[["　相关法律","/news/22.asp"],
										        ["　相关法规","/news/23.asp"], 
                                                                                        ["　司法解释","/news/24.asp"]], 		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;
// -->