function mycarousel_initCallback(carousel) {
    jQuery('.jcarousel-control a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
        return false;
    });
};

// Ride the carousel...
jQuery(document).ready(function() {
    jQuery("#premCarousel").jcarousel({
        scroll: 1,
        size: 2,
        auto: 5,
        animation: 3000,
        wrap: "both",
        initCallback: mycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});


