$(document).ready(function(){
	//hide the all of the element with class msg_body
	$(".faq_body").hide();
	//toggle the componenet with class msg_body
	$(".faq_head").click(function(){
		$(this).next(".faq_body").slideToggle(500);
		$(this).toggleClass("active"); return false;
	});
});