$(document).ready(function(){

	$(".more_text").hide();
	$(".show_more_text").click(function(){$(this).parent().next(".more_text").toggle();});

});
