// JavaScript Document
$(document).ready(function(){
$(".msg_body").hide();
$(".msg_head").toggle(function(){
$(this).next(".msg_body").slideDown(300);
}, function(){
$(this).next(".msg_body").slideUp(300);
});
});