// JavaScript Document
	var preLi="li1";
	var preDivIndex="1" //
	function changeLab(LiId,divIndex)
	{
		document.getElementById(preLi).className="navNormal";
		document.getElementById(LiId).className="navActive";
		document.getElementById("divInfo"+preDivIndex).style.display = "none";
		document.getElementById("divInfo"+divIndex).style.display = "block";
		preLi=LiId;
		preDivIndex=divIndex;
		}
		


	var preLi_Index="tab_li1";
	var preDivIndex_Index="1" //
	function changeLab_Index(LiId,divIndex)
	{
		document.getElementById(preLi_Index).className="index_product_navNormal";
		document.getElementById(LiId).className="index_product_navActive";
		document.getElementById("productInfo"+preDivIndex_Index).style.display = "none";
		document.getElementById("productInfo"+divIndex).style.display = "block";
		preLi_Index=LiId;
		preDivIndex_Index=divIndex;
	}