/*$(function(){
  var s = $('div.scrollable_news').scrollable().circular({
    autoplay:true,
    api: true,
    size:1,
    vertical:true,
    loop:true
  });
  setInterval(function () {s.next();}, 2000);
});*/

$(function(){
    $("div.scrollable_news").scrollable({
        clickable:false,
        nextPage: '.nex',
        prevPage: '.pre',
        items:".info",
        vertical:true,
        api:false
    }).circular().autoscroll({
    steps: 1,
    interval: 4000
});
});