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