$(function(){
    $("#newsContentList a:eq(0)").mousemove(function(){
      $(this).removeClass("buttonStyle2");
      $(this).addClass("buttonStyle1");
      $("#newsContentList a:eq(1)").removeClass("buttonStyle1");
      $("#newsContentList a:eq(1)").addClass("buttonStyle2")
      $("#newsList1").css("display","block");
      $("#newsList2").css("display","none");
    });
    
    $("#newsContentList a:eq(1)").mousemove(function(){
      $(this).removeClass("buttonStyle2");
      $(this).addClass("buttonStyle1");
      $("#newsContentList a:eq(0)").removeClass("buttonStyle1");
      $("#newsContentList a:eq(0)").addClass("buttonStyle2")
      $("#newsList2").css("display","block");
      $("#newsList1").css("display","none");
    });
    
});
