$(document).ready(function(){
  $('.dumb_extra div.dumb').height($('.dumb_extra_model div.long_description_cell_component').height());
  var maxHeight = 0;
  $('.references div.long_description_cell_component').each(function(){
    if($(this).height() > maxHeight){
      maxHeight = $(this).height();
    }
  });
  $('.references div.long_description_cell_component').height(maxHeight);
  $('div.logo_link_cell_component a[href^="#"]').click(function(ev){
    ev.preventDefault();
    ev.stopPropagation();
  });
});
