function change_article_new_menu(menuid)
{
	for(var i=1;i<=4;i++)
	{
		$("#article_new_top"+i).removeClass("article_new_top1");
		$("#article_new_top"+i).addClass("article_new_top2");
		$("#newtop"+i).attr("src","images/index_t_"+i+"_1.gif");
		$("#index_article_new_list"+i).hide();
	}
	$("#article_new_top"+menuid).removeClass("article_new_top2");
	$("#article_new_top"+menuid).addClass("article_new_top1");
	$("#index_article_new_list"+menuid).show();
	$("#newtop"+menuid).attr("src","images/index_t_"+menuid+".gif");
}
function show_weekwork_all()
{
	var o_left = $("#index_tzgg_top").offset().left;
	var o_top = $("#index_tzgg_top").offset().top;
	$("#index_show_weekwork_all").css("position","absolute");
	$("#index_show_weekwork_all").css("z-index","5");
	$("#index_show_weekwork_all").css("left", o_left);
	$("#index_show_weekwork_all").css("top", o_top-30);
	$("#index_show_weekwork_all").css("height", "400px");
	$("#index_show_weekwork_all").css("width", "350px");
	$("#index_show_weekwork_all").show(1000);
}
function hide_weekwork_all()
{
	$("#index_show_weekwork_all").hide(1000);
}
function show_bxtslist(itemid)
{
	$(".index_bxtslist").css("left", 190);
	$(".index_bxtslist").css("top", -20);
	$("#index_bxts_frame").show();
	switch(itemid)
	{
		case 1:
			$("#index_bxtslist_kjjy").show();
			$("#index_bxtslist_ysjy").hide();
			$("#index_bxtslist_xbjy").hide();
			$("#index_bxts_frame").css("top", 0);
			$("#index_bxts_frame").click(function(){location.href='/keji/';});
			break;
		case 2:
			$("#index_bxtslist_kjjy").hide()
			$("#index_bxtslist_ysjy").show();
			$("#index_bxtslist_xbjy").hide();
			$("#index_bxts_frame").css("top", 45);
			$("#index_bxts_frame").click(function(){location.href='/yishu/';});
			break;
		case 3:
			$("#index_bxtslist_kjjy").hide();
			$("#index_bxtslist_ysjy").hide();
			$("#index_bxtslist_xbjy").show();
			$("#index_bxts_frame").css("top", 90);
			$("#index_bxts_frame").click(function(){location.href='/xbhjy/';});
			break;
	}
}
function hide_bxtslist()
{
	$("#index_bxtslist_kjjy").hide();
	$("#index_bxtslist_ysjy").hide();
	$("#index_bxtslist_xbjy").hide();
	$("#index_bxts_frame").hide();
}

