$(function(){
    $('a[href*="http"]').live('click', function(e) { 
      if($(e.target).attr('href').indexOf('hardyreed') == -1) {
        var confirmation = confirm('By clicking here, you will leave the HardyReed website. HardyReed has not independently verified the information on these websites. Opinions found on these websites are not necessarily those of HardyReed.');
        if(!confirmation) e.preventDefault();
      }
    });
});
