Working but the animation isn't smooth.

Working but the animation isn't smooth.

Hi, does someone know why this happends? I have a accordion with the following code:

<script type="text/javascript">
jQuery(document).ready(function() {
   
    //Accordion   
   $(".accordion .slide").hide();
   $(".click a").click(function(){
      $(".slide:visible").slideUp();
      $(this).parent().next().slideDown();
      return false;
   });
      
});
</script>


If you see the result http://www.nononsensewebsite.nl/test/. The last bit of text kind of jumps. Any help would be much appreciated. [/code]