$(document).ready(function() {
    //CARROSSEL
    $('#banner-gallery').jcarousel({
        visible:1,
        auto: 2,
        scroll: 1,
        wrap: 'both',
        initCallback: init
    });
});

function init(carousel){
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
}