$(document).ready(function() {

 //Only add event handlers if browser is IE6 or lower
 if (document.all && !(document.documentElement && typeof document.documentElement.style.maxHeight!="undefined")) {

  $('div#nav ul > li').each(function(index) {
    $(this).hover(function() {
     $(this).addClass('hover');
    }, function() {
    $(this).removeClass('hover');
    });
   });

 }//if

});