[jQuery] Suckerfish Drop Down Menu Plugin

[jQuery] Suckerfish Drop Down Menu Plugin

// suckerFish - jQuery plugin for Drop Down Menus by Ranjan Datta
// v 0.8
// Free beer and free speech. Enjoy!
$.fn.sfHover = function(a) {
    return this.each(function(){
        $(this).find('li').each(function() {
            $(this).bind('mouseover',function() {
                $(this).addClass("sfhover");
            });
            $(this).bind('mouseout',function() {
                $(this).removeClass("sfhover");
            });
        });
    });
};
Ranjan
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/