All scripts require MooTools 1.2.x unless otherwise stated.

Son of Suckerfish Javascript

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'); }
        });
    });