function itemsScroller(_scrollLeft, _scrollRight, _scrollContent, _scrollItems, _itemsVisibles, scrollAll){
	/**/
	var scrollLeft = _scrollLeft;
	var scrollRight = _scrollRight;
	var scrollContent = _scrollContent;
	var scrollItems = _scrollItems;
	var itemsVisibles = _itemsVisibles;
	var numItmesScroll = $(scrollItems).length;
	var _duration = 800;
	if (!scrollAll){
		_duration = 400
	}
	if (numItmesScroll > itemsVisibles){
		/**/
		/*OVERS*/
		$(scrollLeft).mouseover(function () { $(this).addClass('enabledSC'); });
		$(scrollLeft).mouseout(function () { $(this).removeClass('enabledSC'); });
		$(scrollRight).mouseover(function () { $(this).addClass('enabledSC'); });
		$(scrollRight).mouseout(function () { $(this).removeClass('enabledSC'); });
		/**/
		/*CLICKS*/
		$(scrollLeft).click(function () { scrollAnimateInt(false); });
		$(scrollRight).click(function () { scrollAnimateInt(true); });
		/*FIRST*/
		scrollAnimateInt(false);
	}else{
		/*HIDE SCROLLERS*/
		$(scrollLeft).css('display', 'none')
		$(scrollRight).css('display', 'none')
	}
	/*************************************/
	/*FUNCTION ANIMATE!*/
	/*************************************/
	function scrollAnimateInt(next){
		/*POSITION PASO Y TOPE*/
		var position = $(scrollContent).position().left;
		var paso = _scrollItems.eq(0).outerWidth(true);
		var tope = paso * ((numItmesScroll)-(itemsVisibles));
		var pasoAll = 0
		/**/
		/*IZQ o DER*/
		if (scrollAll){
			pasoAll = paso*itemsVisibles
		}else {
			pasoAll = paso*1
		}
		/**/
		var newPos = position+pasoAll;
		if (next){ newPos = position-pasoAll};
		/**/
		/*TOPES*/
		$(scrollLeft).removeClass('disableSC');
		$(scrollRight).removeClass('disableSC');
		/**/
		if (newPos >=0){
			newPos = 0;
			$(scrollLeft).addClass('disableSC');
		}
		if (newPos <=-tope){
			newPos = -tope;
			$(scrollRight).addClass('disableSC');
		}
		/**/
		/*ANIM*/
		//newPos = Math.round((Math.round(newPos/pasoAll))*pasoAll);
		newPos = Math.round(newPos)
		$(scrollContent).stop().animate({left: newPos},{queue:false, duration:_duration, easing:'easeOutExpo'});
		return false;
	}
	/*************************************/
	/*END FUNCTION ANIMATE!*/
	/*************************************/
};