$(document).ready(function(){

	//hide message_body after the first one
	$(".cat_body").hide();

	//toggle message_body
	$(".cat_head").click(function(){
		$(this).next(".cat_body").slideToggle(200);
		return false;
	});
	
	// alert('ready');
});