$(document).ready(function(){
	//hide the all of the element with class slideBody
	$(".slideBody").hide();
	//toggle the componenet with class slideBody
	$(".slideHeader").click(function(){
		$(this).next(".slideBody").slideToggle(250);
	});
});