// carousel instellen
function mycarousel_initCallback(carousel) {
    jQuery('#pijl_rechts').bind('click', function() {
        carousel.next();
        return false;
    });

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


// carousel in werking stellen
jQuery(document).ready(function() {
    jQuery("#screenshotslider").jcarousel({
        scroll: 1,
        initCallback: mycarousel_initCallback,
        // This tells jCarousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});
