$(document).ready(
  function() {

    $("#items table").hover(function() {
      $(this).css({"border" : '1px solid #fff'});
    }, function() {
      $(this).css({"border" : '1px solid #000'});
    });

  }

);