$(document).ready(function() {
  $("div.toggleSection").hide();	
  $('header.toggle').click(function() {
     $(this).closest('.type-post').find('div.toggleSection').slideToggle();
     return false;
  });

 
});
