Here's the more general approach:
var $cycler = $( ".cycler" ),
prev = function() { $cycler.cycle( prevIndex, "scrollRight" ); },
next = function() { $cycler.cycle( nextIndex, "scrollLeft" ); };
$cycler.cycle({
fx: 'scrollLeft',
after: function(currSlideElement, nextSlideElement, options) {
slideIndex = options.currSlide;
nextIndex = slideIndex + 1;
prevIndex = slideIndex -1;
if (slideIndex == options.slideCount-1) {
nextIndex = 0;
}
if (slideIndex == 0) {
prevIndex = options.slideCount-1;
}
}
});
$( ".prev" ).bind( "click", prev );
$( ".next" ).bind( "click", next );
You can change scrollLeft and scrollRight into whatever you like. Note that I'm using .prev, .next and .cycler classes for my previous button, next button and cycler container respectively.