function page_load(){
	/* 绗笁琛岀涓€鍒楀垏鎹㈡晥鏋?*/
	$("#d3_1 .tab").mouseover(function(){
		$("#d3_1 .tab").removeClass("tab_active");
		$("#d3_1 .tab_content .item").css("display", "none");
		var thisobj	= $(this);
		thisobj.addClass("tab_active");
		$(thisobj.attr("rel")).css("display", "block");
	});
	/* 绗笁琛岀浜屽垪鍒囨崲鏁堟灉 */
	$("#d3_2 .tabarea li").mouseover(function(){
		$("#d3_2 .tabarea li").removeClass("active");
		$("#d3_2 .tab_content .item").css("display", "none");
		var thisobj	= $(this);
		thisobj.addClass("active");
		$(thisobj.attr("rel")).css("display", "block");
	});
	$("#d3_3 .title span").mouseover(function(){
		$("#d3_3 .title span").removeClass("active");
		$(this).addClass("active");
		$("#d3_3 .content").load($(this).attr("rel"));
	});
	$("#d3_3 .title span:eq(0)").mouseover();
	$("#zhishu").load($('#zhishu').attr("rel"));
	/* 绗叚琛岀涓€鍒楀垏鎹㈡晥鏋?*/
	$("#d6_1 .tab").mouseover(function(){
		
		$("#d6_1 .tab").removeClass("tab_active");
		$("#d6_1 .tab_content .item").css("display", "none");
		var thisobj	= $(this);
		thisobj.addClass("tab_active");
		$(thisobj.attr("rel")).css("display", "block");
	});
}
$(page_load);
