$(document).ready(function() {
  $('#h-nav ul li').hover(function(e) {
  
    $(this).addClass('hover');
  }, function() {
    var el = $(this)
    setTimeout(function() {
      el.removeClass('hover');
    }, 500);
  });
});