$(document).ready(function () {
  var li = $('#var li');
  li.mouseover(function () {
    $(this).addClass('hover');
  });
  li.mouseout(function () {
    $(this).removeClass('hover');
  });
});
