$(document).ready(function(){
	$('a.external-link[href^="http://"]').each(
		function() {
			if ( !$(this).data('external_link_applied') ) {
				$(this).data('external_link_applied',1);
				$(this).click(
					function($e) {	  
						$e.preventDefault();
						var check = confirm('By accessing the noted link you will be leaving Vantage Point Bank’s website and entering a website hosted by another party. The Bank has not approved this as a reliable partner site. Please be advised that you will no longer be subject to, or under the protection of, the privacy and security policies of the Bank’s website. We encourage you to read and evaluate the privacy and security policies of the site you are entering, which may be different than those of Vantage Point Bank.');
						if(!check) {$e.stopPropagation();} else {window.open(this.href);}
					}
				);
			}
		}
	);
});