$(document).ready(function(){
$(".togglebody").hide();
$(".togglehead").click(function(){
$(this).next(".togglebody").slideToggle(500);
});
});