$(document).ready(function() {
	$(".show_hide_body").hide();
	$(".show_hide_header").click(function() {
		$(this).next(".show_hide_body").slideToggle(600);
	});
});

