var glob_count = 0;

function checkScroll(){
	if(glob_count <= 0){glob_count = i_spisok;}else
	if(glob_count >= i_spisok){glob_count = 0;}
	if(glob_count == 0 || glob_count == i_spisok){
		for(var j=0;j<=CountScrols-1;j++){
			$("#scroller").append(' '+brand[j]+' ');
		}
	}else{
	
	}
}

$(document).ready(function(){
	checkScroll();
});

function nextPicS(){
$(document).ready(function(){
	glob_count = glob_count + CountScrols;
	checkScroll();
	$("#scroller").html('');
	for(var j=0;j<=CountScrols-1;j++){
		if((j-1+1+glob_count-1+1)<i_spisok){
			$("#scroller").append(' '+brand[j-1+1+glob_count-1+1]+' ');
		}
	}

});
}

function forwardPicS(){
$(document).ready(function(){
	glob_count = glob_count - CountScrols;
	$("#scroller").html('');
	checkScroll();
	for(var j=0;j<=CountScrols-1;j++){
		if((j-1+1+glob_count-1+1)<i_spisok){
			$("#scroller").append(' '+brand[(glob_count-1+1)+(j-1+1)]+' ');
		}
	}
});
}


