var $j=jQuery.noConflict();

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

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

			jConfirm("The HCSB web site provides links to other web sites for convenience and information purposes only. Users should be aware that when they select a link on HCSB's web site to an external web site, they are leaving HCSB's site. <br/><br/>Linked sites are not under the control of HCSB. HCSB is not responsible for the contents of any linked site or any link contained in a linked site, or any changes or updates to such sites. <br /><br/>The inclusion of a link does not imply endorsement by HCSB of the site, its content, advertisers or sponsors. <br /><br/> External sites may contain information that is copyrighted with restrictions on reuse. Permission to use copyrighted materials must be obtained from the original source and cannot be obtained from HCSB.", "Confirm", function(r) {
				if( r ) {					
					location.href = url;					
				} else {
					// jAlert("Action cancelled!");
					return false;
			}
		});

		return false;
	}); 	
});	
	
	
