
$(document).ready(function(){
    $('a').each(function(){
	var len = 7;
	if ( this.href.indexOf("http://") < 0 ) {
	    if ( this.href.indexOf("https://") < 0 ) {
		return;
	    }
	    else len = 8;
	}
	var end = this.href.substr(len).indexOf('/');
	if ( end >= 0 ) {
	    var host = this.href.substring(len,end+len).toLowerCase();
	    if ( host == "scruzccu.org"
		|| host == "www.scruzccu.org"
		|| host == "homebanking.scruzccu.org"
		|| host == "morethanjustcommerce.org"
		|| host == "www.morethanjustcommerce.org"
		|| host == "secure.chime.com"
		) { return; }

	    $(this).click(function(){
		return confirm("The site you are about to visit (" + host + ") is furnished by a third-party provider.  Santa Cruz Community Credit Union (SCCCU)  assumes no responsibility for the contents of the site, nor for any goods or services offered therein.  SCCCU does not undertake to represent the third-party provider or the user in any transaction entered into between the two parties.  SCCCU's privacy policies do not extend to external sites.  Please consult the site provider's privacy policy before providing any personal information.");
	    });
	}
    });
});

