jQuery UI Accordion height calculation bug

jQuery UI Accordion height calculation bug

I implemented the Accordion plug-in for jQuery, and am disappointed to find out it doesn't calculate the height correctly (I am setting autoheight to true). Basically, it calculates the height of the first element you click and applies it to all the others thereafter instead of recalculating it each time.

There were a few workarounds and posts about using the latest build, but I can't get the thing to calculate the height correctly.

Anyone know of a fix, or a different accordion-style menu that can be triggered by a mouse over?

FWIW, here's my code:

<script type="text/javascript">
   jQuery().ready(function(){
      jQuery('#navigation').Accordion({
         active: false,
         header: '.head',
         navigation: true,
         event: 'mouseover',
         autoheight: true,
         animated: 'easeslide'
      });      
   });
</script>