$(document).ready(function() {
	$(".msg_head").click(function () {
		$(this).next(".msg_body").slideToggle("slow");
	});
});
