$(function(){
  $('body').addClass('js-enabled');
  
  $('div.openable').openable();
});

$.fn.openable = function() {
  return this.each(function(){
    $(this).prev('h2').toggle(function(){
      $(this).next('div.openable').slideDown();
    },function(){
      $(this).next('div.openable').slideUp();
    });
  });
 }

