$(document).ready(function() {
  // IE6 & less-specific functions
  // Add hover class to form submit button elements on hover
  if ($.browser.msie && (navigator.appVersion.search("MSIE 6.0") != -1)) {
    $('#primary-menu ul.menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#primary-menu ul.menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
});