      $(document).ready(function() {
			$("a[href^='mailto:']").each(function(el){
					$(this).click(function () { 
						return emailwarning();
					});
			 });
      });
      

	function emailwarning()
	{
		var strWarning
		strWarning = "E-mail messages sent via the Internet are not necessarily secure. " +
		"Please do not transmit any information you wish to be confidential unless " +
		"you have already established an attorney/client relationship with us.\n\nIn " +
		"order to preserve and safeguard the relationships with our current " +
		"clients, Kennedy, Childs and Fogg, P.C. must go through certain formalities before " +
		"agreeing to represent anyone on a particular matter.\n\nUntil these " +
		"formalities are complete, we will not have an attorney/client relationship " +
		"with you and none of your communications sent using e-mail should be " +
		"considered privileged or confidential.";
		return(confirm(strWarning));
	}

