$(document).ready(function(){
  $(".page_content a[href$='pdf']").attr('target','_blank');
  
  $(".page_content .external").bind('click', function() {
  var thehref = $(this).attr("href"); 
 if (confirm("You are about to leave the Northwest Bank website.\n\n"+ thehref +"\n\nis not a direct representation of and is not controlled by Northwest Bank.")) {
	return true;
  } else {
	  return false;
  }
  
	});
	
  $("li .investments").bind('click', function() {
  var thehref = $(this).attr("href"); 
 if (confirm("You are about to leave the Northwest Bank website.")) {
	return true;
  } else {
	  return false;
  }
  
	});
});

