$(document).ready(function() {
	$(".hidden-content").hide();

	$(".show-more").each(function(index) {
		$(this).toggle(function() {
			var index = $(".show-more").index(this);
			$(".hidden-content:eq("+index+")").fadeIn();
			$(this).text("Less");
		}, function(index) {
			var index = $(".show-more").index(this);
			$(".hidden-content:eq("+index+")").fadeOut();
			$(this).text("More choices");			
		});
		
	});
	
});


$(document).ready(function() {
	$(".hidden-contenta").hide();

	$(".show-morea").each(function(index) {
		$(this).toggle(function() {
			var index = $(".show-morea").index(this);
			$(".hidden-contenta:eq("+index+")").fadeIn();
			$(this).text("Less");
		}, function(index) {
			var index = $(".show-morea").index(this);
			$(".hidden-contenta:eq("+index+")").fadeOut();
			$(this).text("List");			
		});
		
	});
	
});
