function decodeAddress(A){var A=A.split("|");shift=A[0].length;link="";for(i=0;i<A[0].length;i++){if(A[1].indexOf(A[0].charAt(i))==-1){ltr=A[0].charAt(i);link+=ltr}else{ltr=(A[1].indexOf(A[0].charAt(i))-shift+A[1].length)%A[1].length;link+=(A[1].charAt(ltr))}}return link}jQuery.noConflict();jQuery(document).ready(function(){jQuery.find("a").each(function(D){var B=jQuery(D).attr("href");var C=new RegExp("(.*)/mailto/(.*)","i");if(typeof B!="undefined"&&B.match(C)!=null){var A=C.exec(B);if(A!=null){jQuery(D).attr("href","mailto:"+decodeAddress(A[2]))}}})});