This will do it:
Code:
var counter = 0;
setInterval(function(){var ops = $('#opinions-pages li a'); ops.eq((++counter)%ops.length).click();}, 3000);
But you have to wait until after the opinions are initialized to do it. That appears to be here (in main.js):
Code:
/* Set Opinios Pagination */
var pages = $('#opinions-list').find('li').length;
var active = '';
for(var i=1;i<=pages;i++)
{
active = (i===1) ? 'active':'';
$('<li><a href="#'+i+'" class="'+active+'">'+i+'</a></li>').appendTo('#opinions-pages');
}
$('.slider-markers li a').on('click', function()
{
var id = '#comment-' + $(this).html();
var active_id = '#comment-' + $('.slider-markers').find('.active').html();
//$('.slider-regular').find('li').css('opacity','0').first().css('opacity','1');
$('.slider-markers li a').removeClass('active');
$(this).addClass('active');
$(active_id).animate({opacity: 0}, 1000, function(){ $(active_id).hide(); })
setTimeout(function(){
$(id).css('display','block').animate({opacity: 1}, 1000);
}, 1000);
;
});
So I'd add it right after that.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks