$(document).ready(function(){
	$('a.externalVerify').click(function(e){
		var confirmation_text = "Republic Bank has no control over information at any site hyperlinked to from this Site and makes no representation concerning and is not responsible for the quality, content, nature, or reliability of any hyperlinked site  and is providing this hyperlink to you only as a convenience. The inclusion of any hyperlink does not imply any endorsement, investigation, verification or monitoring by Republic Bank of any information in any hyperlinked site. In no event shall Republic Bank be responsible for your use of a hyperlinked site. \n\nTo remain at our site, click Cancel. To leave our site for the link you selected, click OK. Thank you for visiting our site.";
		
	if( confirm(confirmation_text) == false )
	{
		e.preventDefault();
	}
});
});
