jQuery(document).ready(function($) {
 jQuery('.section-case-studies .tileItem').append('<div id="testimonials-footer"></div>');
 jQuery('.section-case-studies .tileItem').prepend('<div id="testimonials-header"></div>');
 //equalHeight($(".green-bubble p, .testing p"));
 jQuery('.gallery-table a').attr('rel','lightbox[gallery]')
});	

function equalHeight(group) {
   tallest = 0;
   group.each(function() {
      thisHeight = jQuery(this).height();
      if(thisHeight > tallest) {
         tallest = thisHeight;
      }
   });
   group.height(tallest);
};
