$(document).ready(function() {
    $('#neukundenCarousel').jcarousel({
        wrap: 'both',
        auto: 2,
        scroll: 1,
        buttonNextHTML: null,
        buttonPrevHTML: null,
        initCallback: function(carousel) {
            // Pause autoscrolling if the user moves with the cursor over the clip.
            carousel.clip.hover(function() {
                carousel.stopAuto();
            }, function() {
                carousel.startAuto();
            });
        }
    });
});
