$(document).ready(function() {

  var toggleContent = (function(){
    $('#content .js-toggle dd').hide();
    $('#content .js-toggle').delegate('dt', 'click', function(){
      $(this).next().slideToggle('fast');
    });
  })();


  var lightboxGallery = (function(){
    $('#gallery a').lightBox();
  })();

});


