// execute your scripts when the DOM is ready. this is a good habit 

$(function() { 

 

    // initialize scrollable 

    $("div.scrollable").scrollable({ 

 

    // one configuration property 

    size: 3, 

 

    // ... the rest of the configuration properties 

}); 

 

}); 