// execute your scripts when DOM is ready. this is a good habit
$(function() {

    // initialize scrollable 
    jQuery("div.scrollable").scrollable({
        size: 1,
        items: '#thumbs',
        hoverClass: 'hover',
        interval: 8000,
        loop: true
    });

});

