$(document).ready(function() {
	$(".reveal").hide();
	
	$(".more").click(function(){
		$(this).next().slideToggle();
		/* $(this).hide(); */
		
		$(this).html(($(this).html() == "Read more") ? "Hide" : "Read more");
	});
});
