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