 // * jquery below
 
var $j = jQuery.noConflict();

 

$j(document).ready(function()
{

	$j(".msg_body").hide();

  
    $j(".msg_head").toggle(function(){
		$j(this).addClass("msg_head_show");
	}, function () {
		$j(this).removeClass("msg_head_show");
	});
	
	$j(".msg_head").click(function(){
		$j(this).next(".msg_body").slideToggle(100);
	});
	

});	








 

 