jQuery(document).ready( function() {
  if (jQuery.browser.msie && parseFloat(jQuery.browser.version) < 7) {
    jQuery('#nav ul li').each(function() {
      this.onmouseover = function() {
        jQuery(this).addClass('over');
      }
      this.onmouseout = function() {
        jQuery(this).removeClass('over');
      }
    })
  }
});

