

$(document).ready(function()
{
	$('.togglebody').hide();
	$('.togglehead').click(function(e){
		e.preventDefault();
		$(this).next().slideToggle(300);
	});
});

