function mycarousel_initCallback(carousel){
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
 
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        animation: 1000,
        scroll: 2,
        initCallback: mycarousel_initCallback
    });
});
