function mycarousel_itemVisibleInCallback(carousel, item, i, state, evt) {

    var collections = $("#mycarouselcontainer div");
    var clength = collections.length;
    var idx = carousel.index(i, clength);
    var html = $(collections.get(idx - 1)).html();
    carousel.add(i, html);
};

function mycarousel_itemVisibleOutCallback(carousel, item, i, state, evt) {
    carousel.remove(i);
};

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        start: 1,
        scroll: 1,
        wrap: 'circular',
        itemVisibleInCallback: { onBeforeAnimation: mycarousel_itemVisibleInCallback },
        itemVisibleOutCallback: { onAfterAnimation: mycarousel_itemVisibleOutCallback },
        initCallback: mycarousel_initCallback
    });

    
});


function mycarousel_initCallback(carousel) {
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
 