jQuery(document).ready(function($){         
    // initialize scrollable  
    $("div.scrollable").scrollable({ 
             
        // items are auto-scrolled in 2 secnod interval 
        //interval: 2000, 
        
        // when last item is encountered go back to first item 
        loop: true,  
         
        // make animation a little slower than the default 
        speed: 1500,
		vertical:true,
		size:4
    }).autoscroll({interval: 4900}).circular().mousewheel();  
}); 
