/* alert on mail links */
jQuery(document).ready(function(){
jQuery('.mail-link').click(function(){
	var r = confirm('EMAIL DISCLAIMER: Please be aware that contacting us via e-mail does not create an attorney-client relationship between you and Price Heneveld®. Do not send confidential information to the firm until you have spoken with one of our attorneys and have received authorization to send such materials. Until an attorney-client relationship has been established, we cannot consider information you send us as confidential.');
	
	if(r ==true){
		return true;
	}
	else{
		return false;
	}
});
});
