$(document).ready(function() {
	$("#searchBox").hide();
	$("#hideSearch").click(function() {
		$("#searchBox").toggle("slow",kly());
	});
	var i=1;
	function kly() {
		if (i==1) {
			$("#hideSearch").children().replaceWith("<span>>>隐藏搜索</span>"); 
			i=2;
		} else { 
			$("#hideSearch").children().replaceWith("<span>>>显示搜索</span>"); 
			i=1;
		} 	 
	}
	$("#a_1").click(function() {
		$(".table_list").removeAttr("id"); 
		$(".table_list").attr("id","tableStyle_1");
		$("#a_2").removeClass("mouse"); 
		$("#a_1").addClass("mouse");
		return false;
	});
	$("#a_2").click(function() {
		$(".table_list").removeAttr("id"); 
		$(".table_list").attr("id","tableStyle_2");
		$("#a_1").removeClass("mouse"); 
		$("#a_2").addClass("mouse");
		return false;
	});
	$("#b_1").click(function() {
		$("#b_2").removeClass("mouse"); 
		$("#b_1").addClass("mouse");
		return false;
	});
	$("#b_2").click(function() {
		$("#b_1").removeClass("mouse"); 
		$("#b_2").addClass("mouse");
		return false;
	});
	$(".tbodyMouse").hover(
	function() {$(this).attr("id","mouse");},
	function() {$(this).removeAttr("id","mouse");}
	);
});


