$(function() {
	$('.gallery').jCarouselLite({
		btnNext: '.next',
		btnPrev: '.prev',
		visible: 1
	});

	var inner_w = 0;
	$('#chair1 a').each(function() {
		inner_w += $(this).width();
	});
	$('#chair1 .inner').width(inner_w);
	inner_w = 0;
	$('#chair2 a').each(function() {
		inner_w += $(this).width();
	});
	$('#chair2 .inner').width(inner_w);
	$('#chair1 .nav.left,#chair2 .nav.left').click(function(e) {
		e.stopPropagation();
		e.preventDefault();
		var inner = $(this).siblings('.inner');
		$(inner).stop(true, true);
		if ( parseInt($(inner).css('left')) < 35 )
			$(inner).animate({left: '+=70'}, 300);
		return false;
	});
	$('#chair1 .nav.right,#chair2 .nav.right').click(function(e) {
		e.stopPropagation();
		e.preventDefault();
		var inner = $(this).siblings('.inner');
		$(inner).stop(true, true);
		if ( parseInt($(inner).css('left')) + $(inner).width() > $(inner).parent().width() - 70 )
			$(inner).animate({left: '-=70'}, 300);
		return false;
	});
});

