jquery animate script help needed

jquery animate script help needed

Hey Guys,

I am positioning width and height using jquery animate command.

http://204.12.114.206/index.php#Photographers/Jason_Madara/Projects

widthSlideshow = ($("#slideshow img").width());
heightSlideshow = ($("#slideshow img").height());
       

$("#captionContainer").animate({width: widthSlideshow, opacity:1}, 1500);
      $("#caption").animate({marginTop: heightSlideshow}, 1000, function(){
        $("#captionContainer").animate({width: widthSlideshow, opacity:1}, 1500);                                                    });

if you click through images there is jerkiness in placement of the text belo the image.

Can anyone let em know how to fix this.

I just want the text to fade in with no jerks.