(function() {
  var anchors = document.getElementsByTagName('a'), lgth = anchors.length,
      domain = 'wwkadvisors.com';
  for (var i = 0; i < lgth; i += 1) {
    if (anchors[i].getAttribute('href').indexOf(domain) > 0) {
      anchors[i].onclick = function(e) {
        if ( !confirm('You are now being redirected to WWK Advisors') ) e.preventDefault();
      }
    }
  }
}());
