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