$(document).ready(function() {
	$('#more-products').hide();
	$('.rec-button').click(function() {
		var button = $(this);
		var showNow = button.find('.status').text() == 'more';
		var moreProducts = $('#more-products');
		
		if (showNow) moreProducts.fadeIn();
		else moreProducts.slideUp();
		button.find('.quantity').toggle();
		button.find('.status').text(showNow ? 'less' : 'more');
		button.toggleClass("up");

		return false;
	});
});
