Control accordion expand and collapse speed

Hi all

I was wondering if it is possible to control the speed with wich the accordion expands and retracts the accordionItem's?

Thanks
Marius

Hi Marius, could you try to

Hi Marius,
could you try to use SMIL animation to change the accordion item height ? for instance:

<b:accordion width="250px"  height="auto" class="btl-bevel-left-right">  
   <b:accordionItem label="2001" padding="5px 10px">
       <e:handler event="click" match=".btl-accordionItem-head" type="application/javascript">
          bb.smil.animate(this, {'attributeName': 'height','from':'15px','to': '100%', 'dur': '1s'}  );
       </e:handler>

Cheers,
Yudi