var $j=jQuery.noConflict();

$j(document).ready( function() {

	$j(".confirm").click( function() {
		var url = $j(this).attr('href');

			jConfirm("Please be advised that you are leaving NW Plus CU's website. This link is provided as a courtesy.  NW Plus CU does not endorse or control the content of third party websites.", "Confirm", function(r) {
				if( r ) {
					window.open(url);
				} else {
					// jAlert("Action cancelled!");
					return false;
			}
		});

		return false;
	}); 

});