(function ($) {
  Drupal.behaviors.facilitator_support = {
    attach: function (context, settings) {
      $('.view-offline-documents .views-row', context).once('offline-documents-slide', function() {
        var row = $(this);
        $('.views-field-title', row).click(function() {
          $(this).parent().toggleClass('expanded');
          return false;
        });
      });
    }
  };
}(jQuery));

;

