// CATALOGUE CUSTOM JS

  $(document).ready(function() {
  
	var numSliderItems = $("#multi-slider-content li").size();
	if(numSliderItems <= 3) {
		$('#multi-slider-scroller').css('display', 'none');
	}
		
	var clickable = "Y"
    $('.right-arrow').click(function() {
		if(clickable != "N") {
			clickable = "N"
			$("#multi-slider-content ul").animate({ 'margin-left': '-=322' }, "normal", function() {
  				$(".thumbs li:first").appendTo(".thumbs");
				$("#multi-slider-content ul").animate({ 'margin-left': '0' }, 0);
				clickable = "Y"
  			});
		}
    });
	
	$('.left-arrow').click(function() {	
		if(clickable != "N") {
			clickable = "N"
			$(".thumbs li:last").prependTo(".thumbs");
				$("#multi-slider-content ul").animate({ 'margin-left': '-=322' }, 0, function() {
				$("#multi-slider-content ul").animate({ 'margin-left': '0' }, "normal");
				clickable = "Y"			
	  		});
		}
    });
	
  });
