$(function(){
  $("#news_table").find("tr").mouseover(function(){
    $(this).addClass("trmover");
  });
  
  $("#news_table").find("tr").mouseout(function(){
    $(this).removeClass("trmover");
  });
});

