$("document").ready(function() {
    $(function() {
        $("#Bildbox").scrollable({
            circular: true
        }).click(function() {
            $(this).data("scrollable").next();
        });
    });
});

