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 PremierWest Bank's website. This link is provided as a courtesy.  PremierWest Bank does not endorse or control the content of third party websites.", "Confirm", function(r) {
				if( r ) {					
					location.href = url;						
				} else {
					// jAlert("Action cancelled!");
					return false;
			}
		});

		return false;
	}); 

});
