// one showing at a time

$(document).ready(function() {
  $('#content > div').hide();
  $('#content > h2').click(function() {
	var $openSection = $(this).next('div');
    $openSection.height($expandableHeight)
    $openSection.slideToggle('fast')
    .siblings('div:visible').slideUp('fast');
  });
});

