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

function navlink(thehref){
if (confirm("You are about to leave the First National Bank website.\n\n"+ thehref +"\n\nis not a direct representation of and is not controlled by First National Bank.")) {
	document.location=thehref;

  }
}
