$(document).ready(function(){

function mycarousel_initCallback(carousel) {
  

    jQuery('.mycarousel-next').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('.mycarousel-prev').bind('click', function() {
        carousel.prev();
        return false;
    });
    
    };


// Ride the carousel...

    $("#images").jcarousel({
        scroll: 1,
        initCallback: mycarousel_initCallback,
        // This tells jCarousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null,
        wrap: 'last',
        animation: 500
    





});

    $("ul#contentsections").jcarousel({
        scroll: 1,
        initCallback: mycarousel_initCallback,
        // This tells jCarousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null,
        wrap: 'last',
        animation: 500
    





});


});
