$(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...");			
		});
		
	});
	
});
