jQuery(document).ready(function($){

	$('.more-content').hide();
	
	$('.more-link a').toggle(function(){
	
		$(this).html('Show less');
		$(this).parent().parent().find('.more-content').show();
		return false;
		
	}, function() {

		$(this).html('Read more');
		$(this).parent().parent().find('.more-content').hide();
		return false;
	
	});

});
