(function($){

$(function() {
  $("#top-nav li").each(function() {
    $(this).mouseover(function() {
      $(this).addClass("hover");
    });
    $(this).mouseout(function() {
      $(this).removeClass("hover");
    });
  });
});

})(jQuery);