mmove=0;
$(document).ready(function(){
	$('.gallery').each(function(){
		if($(this).find('.item').length>3){
			$(this).find('.arrow').css('display','block');
			$(this).find('.container').wrapInner('<div class="slide" />');
			$(this).find('.slide').css('position','relative');
			$(this).find('.slide').css('width', '300%');
		}
	});
	
	$('.gallery .arrow.right').click(function(){
		if(mmove==0){
			mmove=1;
			dx=$(this).parent('.gallery').find('.item').first().outerWidth(true);
			$(this).parent('.gallery').find('.slide').animate({left: '-'+dx+'px'},dx, function(){
				$(this).css('left',0);
				$(this).find('.item').first().insertAfter($(this).find('.item').last());
				mmove=0;
			});
		}
	});
	
	$('.gallery .arrow.left').click(function(){
		if(mmove==0){
			mmove=1;
			dx=$(this).parent('.gallery').find('.item').last().outerWidth(true);
			$(this).parent('.gallery').find('.slide').css('left','-'+dx+'px');
			$(this).parent('.gallery').find('.item').last().insertBefore($(this).parent('.gallery').find('.item').first());
			$(this).parent('.gallery').find('.slide').animate({left: '0'},dx, function(){mmove=0; });
		}
	});
});

