var ed = 1;
var stop_informer = false;
function informer() 
{
	if(parseFloat($('#lenta').css('left')) < -1925){ 
      if(!stop_informer){	
		  $('#lenta').animate({opacity: 0.2}, 300).animate({'left': '0px'}, 500).animate({opacity: 1}, 300);
		  $('.buts_but').attr('src','newsbox/images/gray.gif'); 
		  $('.buts_but').eq(0).attr('src','newsbox/images/green.gif'); 
		  ed=1;
      }	  
	}else{	
	  if(!stop_informer){	
		  $('#lenta').animate({opacity: 0.2}, 300).animate({'left': '-=385px'}, 1500).animate({opacity: 1}, 300); 
		  $('.buts_but').attr('src','newsbox/images/gray.gif'); 
		  $('.buts_but').eq(ed).attr('src','newsbox/images/green.gif'); 
		  ed++;
		  if(ed==8) ed=1;
	  }
	}  

	setTimeout("informer()", 10000);
}  
 
$(document).ready(function(){informer()});
