I took a different direction with a carousel I implemented, opting for bxSlider instead of jCarousel. This is for an image gallery I am building http://rjwcollective.com/equ
Declaring the "mySlider" variable outside the document-ready block solved the problem for me:
var mySlider; $(function(){ mySlider= $('#slider').bxSlider({ auto: true, controls: true }); mySlider.reloadShow(); })
Alex