$(function(){
    var images = $('.sidebar-slideshow');
    var next = 1;

    window.setInterval(function(){
        if (next == $(images).length) next=0;
        if (next != 0) {
            $(images).eq(next-1).hide();
        } else {
            $(images).eq($(images).length-1).hide();
        }
        $(images).eq(next).show();
        next++;
    }, 6000);
})

