// execute your scripts when DOM is ready. this is a good habit 
$(function() {         
         
    // initialize scrollable  
    $("div.scrollable").scrollable({ 
    
        size: 2,             
        interval: 2500, 
        loop: true,  
        speed: 500, 
       
    });     
     
}); 