// ×ó²àµ¼º½ÉìËõ
$(document).ready(function(){
	$("#left01").click(function(){
		$(".managerLeftNav").hide();
		$("#left01Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left01").addClass("leftNav");
	});
	$("#left02").click(function(){
		$(".managerLeftNav").hide();
		$("#left02Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left02").addClass("leftNav");
	});
	$("#left03").click(function(){
		$(".managerLeftNav").hide();
		$("#left03Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left03").addClass("leftNav");
	});
	$("#left04").click(function(){
		$(".managerLeftNav").hide();
		$("#left04Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left04").addClass("leftNav");
	});
	$("#left05").click(function(){
		$(".managerLeftNav").hide();
		$("#left05Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left05").addClass("leftNav");
	});
	$("#left06").click(function(){
		$(".managerLeftNav").hide();
		$("#left06Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left06").addClass("leftNav");
	});
	$("#left07").click(function(){
		$(".managerLeftNav").hide();
		$("#left07Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left07").addClass("leftNav");
	});
	$("#left08").click(function(){
		$(".managerLeftNav").hide();
		$("#left08Div").show(); 
		$(".managerLeft > ul > li").removeClass("leftNav");
		$("#left08").addClass("leftNav");
	});
	
	//ÒÆÈë±ä±³¾°É«
	$(".managerTable2 > tbody > tr").hover(
	  function () {
		$(this).addClass("trBack");
	  },
	  function () {
		$(this).removeClass("trBack");
	  }
	); 
});



