﻿$(document).ready(function(){
  if (typeof setSize == 'function') {
    setSize();
  }
  $(".msg_body").hide();
  $(".msg_head").click(function(){
    $(this).find("img").toggle();
    $(this).next(".msg_body").slideToggle(400);
  });
});