// JavaScript Document#
jQuery(document).ready(function() {
  jQuery(".Tcontent").hide();
  //toggle the componenet with class msg_body
  jQuery(".Theading").click(function()
  {
    jQuery(this).next(".Tcontent").slideToggle(500);
  });
});

