﻿//jQuery(document).ready(function(){
// ciciloc();
//});
  var step1 = 0;
  var max = 690;
//автоматическая перелистывалка баннеров
function ciciloc(){
  if (ge('scroll').scrollLeft == max)
	{
		$('#scroll').animate({scrollLeft: (ge('scroll').scrollLeft-max) +"px"}, 1000);
	}
	else
	{
  $('#scroll').animate({scrollLeft: (ge('scroll').scrollLeft+step1) +"px"}, 1000);
  step1 = 230;
  }

	setTimeout(ciciloc,10000);
}


// Get element
function ge(id){
  return document.getElementById(id);
}
// Merry-go-round scroller
function mgr_scroll(id,side,step,maxleft){
	var div=ge(id);
	if(side=='l'){
		if(div.scrollLeft<maxleft)
			$('#'+id).animate({scrollLeft: (ge(id).scrollLeft+step) +"px"}, 500);
	}
	if(side=='r')
		$('#'+id).animate({scrollLeft: (ge(id).scrollLeft-step) +"px"}, 500);
}
