var j = jQuery.noConflict();
j(document).ready(function()

{
	
  //hide the all of the element with class msg_body
  j(".msg_body").hide();
  //toggle the componenet with class msg_body
  j(".menuHeader").click(function()
  {
    j(this).next(".msg_body").slideToggle(600);
  });
});
