function mycarousel_initCallback(carousel) {
 jQuery('.jcarousel-control a').bind('click', function($) {
 carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
 return false;
});

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

};


// Ride the carousel...
jQuery(document).ready(function($) {
    jQuery("#mycarousel").jcarousel({
        scroll: 1,
        animation: 'slow',
        auto:8,
        wrap:'last',
        initCallback: mycarousel_initCallback,
                buttonNextHTML: null,
        buttonPrevHTML: null

    });
});
