$(document).ready(function(){
	//hide the all of the element with class msg_body
	$(".more_body").hide();
	//toggle the componenet with class msg_body
	$(".more_head").click(function(){
		$(this).parent().next(".more_body").slideToggle(400);
	});
});
