$(document).ready(function() {
  $("#news_list a").hover(function() {
    $("#news_detail div").hide();
    $("#news_list a").removeClass("active");
    $(this).addClass("active");
    var id = "#news_" + $(this).attr("id").substring(5, $(this).attr("id").length);
    $(id + " div").show();
    $(id).show();
  }/*,
  function () {
    var id = "#news_" + $(this).attr("id").substring(5, $(this).attr("id").length);
    $(id + " div").hide();
    $(id).hide();
  }*/);
});

