Maybe an HOVER bug?

Maybe an HOVER bug?

Hey guys,
Currently I'm using a jquery plugin called jdMenu
http://jdsharp.us/jQuery/plugins/jdMenu/
I downloaded jdMenu 1.3.beta2 and it worked fine. However I
found that the jQuery version in the plugin is 1.1.2 so I replaced it
with 1.3.2. Then the trouble comes.
In the plugin jdMenu.js the author uses $(li).hover
(hoverOverLI,hoverOutLI) to register the events but in the 1.3.2
version, the hoverOverLI function is triggered only once and then it
is never triggered.
I modified this expression to $(li).bind
('mouseover',hoverOverLI).bind('mouseout',hoverOutLI) it works correct
like the old version. I think maybe the 1.3.2 contains an HOVER bug
when there are a lot of events?
--