function home_random_sales(){
    var carousel = jQuery('#manufacturer-counts').jcarousel({
        start: 1,
        vertical: false,
        scroll: 2,
        animation: 'slow',
        auto: 1,
        wrap: 'both',
        initCallback: home_initCallback
    });
}

function home_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.hover = true;
        carousel.stopAuto();
    }, function() {
        carousel.hover = false;
        carousel.startAuto();
    });
};



