Non-Fluid Animation

Non-Fluid Animation

Hi, I have a problem with my jQueryUI code, the animation is not fluid. When the code below is placed into my page, the animation is jerky ?

  1. $(".reachme a").unbind().click(function(event) {
  2.   event.preventDefault();
  3.   $("#reachme").css("top", "900px");
  4.   $("#reachme").animate({top: '400px', height: '750px'}, { duration:'3000', easing: 'easeInOutBounce' });
  5. });