// execute your scripts when the DOM is ready. this is a good habit
$(function() {

    // initialize scrollable
        $("div.scrollable").scrollable({
        clickable:false,
        size: 10,
        items: '.items',
        vertical:true,
        nextPage: '.nextPage', prevPage: '.prevPage'

    });

});