$(document).ready(function() {
	$(".products").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		visible: 7
	});	
	$('#products-container').hide();
	$('.show-products').click(function() {
		$('#products-container').show();
	});
	$('.hide-products').click(function() {
		$('#products-container').hide();
	});		
});
