// JavaScript Document

$(document).ready(function(){
	//hide the all of the element with class msg_body
	$(".barContent").hide();
	//toggle the componenet with class msg_body
	$(".barHeader").click(function(){
		$(this).next(".barContent").slideToggle(300);
	});
});