jQuery(document).ready(function($) {

  $('#descriptions .galleryContent').hide();

  $('#descriptions .section').click(function(event) {
    $('#descriptions .galleryContent').hide();
    var currentId = 'img-'+event.target.id;
    //$('#'+currentId).fadeIn("fast");
    $('#'+currentId).show();
  });

});

