$(function(){
  if (isWHO == true) {
    $('#who-disclaimer').modal();
  }
  
  // replace images with who-dummies
  $('.pgroup_wrapper .who').each(function(){
    $(this).find('a img').attr('src', '/mil/media/img/who_image.png');
  });
  
  $('.pgroup_wrapper .who a').live('click', function(event){
    $('#who-disclaimer').modal();
    event.preventDefault();
  });
  
});
