$(function() {
    $(".scrollable").each(function() {
        var prev = $(this).prev().remove().click(function(e) {e.preventDefault()})
        var next = $(this).next().remove().click(function(e) {e.preventDefault()})
        $(this).carousel({
            prevBtn: prev,
            nextBtn: next,
            loop: true,
            dispItems: 2,
            equalWidths: false
        })
    })
})
