/*
 * xx表示这个模块名
 * tab 格式：xx_tab1,xx_tab2,xx_tab3 ...
 * table 格式：show_xx_tab1,show_xx_tab2,show_xx_tab3 ...
 * 
 * 因为一个页面会重复用到
 */
$(function(){
	$("a[id*='tab']").mouseover(
		function(){
			// 取得id;
			var id = $(this).attr("id");
			$(this).css({"background":"#7BA9DB"}).siblings().css({"background":""}); 

			// 取得模块名称
			var mkName = (id.split("_"))[0];
			
			// 隐藏这个模块所有talbe
			$("table[id^='show_"+mkName+"']").hide();
			
			// 显示相关table
			$("#show_"+id).show();
		}
	);
	
});
