$(document).ready(function(){
	//hide the all of the element with class msg_body
	$("#problems").hide();
	//toggle the componenet with class msg_body
	$("a#dropdown").click(function(){
		$(this).next("#problems").slideToggle(300);
		return false;
	});
});