//±í¸ñ±³¾°S
 $(function(){
      //table
   	  $("#col_bg tr").mouseover(function(){
	     $(this).removeClass("");
	  	 $(this).addClass("col_bg");
	  });
	  $("#col_bg tr").mouseout(function(){
	  	 $(this).removeClass("col_bg");
		 $(this).addClass("");
	  });	     
   });
//±í¸ñ±³¾°E
