Дорогие форумчане. Вот кусок кода. Нужно сделать, так чтоб каждую 2-5 сек. автоматически перекручивались блоки. В JS я не силен. Плиз помогите.
$(document).ready(function() {
var $item = $('ul.list li'), //Cache your DOM selector
visible = 1, //Set the number of items that will be visible
index = 0, //Starting index
endIndex = ( $item.length / visible ) - 3; //End index
$('.news-blok .arrow-right').click(function(){
if(index < endIndex ){
index++;
$item.animate({'left':'-=300px'});
}
});
$('.news-blok .arrow-left').click(function(){
if(index > 0){
index--;
$item.animate({'left':'+=300px'});
}
});
});