$(document).ready(function(){ if($.browser.msie) { $('ul#menu li').not('.active').hover( function(){//hover $(this).children('a').css('background', 'url(/img/tab_spacer.png) top left no-repeat'); if($.browser.version == '6.0'){ $(this).addClass('active'); } }, function(){//out $(this).children('a').css('background', 'url(/img/shadow_tab_spacer.png) top left no-repeat'); if($.browser.version == '6.0'){ $(this).removeClass('active'); } }); } });