function collapsible(){
	//hide the all of the element with class msg_body
	$(".collapsible_tab").map(function(){
  	if (!$(this).hasClass("open"))
			$(this).next(".collapsible_content").hide();
  });

	$(".collapsible_tab").click(
		function(e){
			var content = $(this).next(".collapsible_content");

			if (content.is(':visible')){
				content.slideUp();
				$(e.target).removeClass('open');
			} else {
				content.slideDown();
				$(e.target).addClass('open');
			}

		}
	);

}