$(function () {
    
    $("#actions .products").scrollable({
        items: '#thumbs' 
       ,speed: 400
       ,size: 3
       ,clickable: false
       ,onBeforeSeek: function() { 
           this.getItems();
       }
       ,onSeek: function() { 
           this.getItems();
       }
    });
});