$(document).ready(function() {
 
	  $('a').filter(function() {
	    return this.hostname && this.hostname !== location.hostname;
	  })
	  .click(function () { 
		  var x=window.confirm('You are now leaving FSCB.com. First State Community Bank and its affiliates are not responsible for any transactions or information within non-affiliated websites. Click OK to proceed.');
			var val = false;
			if (x)
				val = true;
			else
				val = false;
			return val;
 
        });
  });
