 {
$(document).ready(function(){
$(".msg_body").hide();
$(".msg_head").click(function(){
if ( $(this).next(".msg_body").is(':visible') ) {
$(".msg_body").hide(); }
else {
$(".msg_body").hide();
$(this).next(".msg_body").slideToggle(500); }
});
});
}
