If you are using Son of Suckerfish menus & already have MooTools installed you might as well just use the following Javascript code, its a bit shorter.
window.addEvent('domready', function() {
$$('#nav li').addEvents({
'mouseenter': function() { this.addClass('sfhover'); },
'mouseleave': function() { this.removeClass('sfhover'); }
});
});