// JavaScript Document
$(document).ready(function(){
	//hide the all of the element with class drop
	$(".drop").show();
	//toggle the componenet with class msg_body
	$(".drop_down").click(function(){
		$(this).next(".drop").slideToggle(250);
	});
});

