$(document).ready(function() {
	//hide the all of the element with class .sidebar-item-one-text
	$(".slide-content").hide();

	//slides the element with class "msg_body" when paragraph with class "msg_head" is clicked 
	$("h2").click(function() {
		$(this).next(".slide-content").slideToggle(700).siblings(".slide-content").slideUp("slow");	
	});				
});
