(function($){
	$.fn.cacheMail = function() {
		at = / at /;
		dot = / dot /g;
		this.each( function() {
			addr = jQuery(this).text().replace(at,"@").replace(dot,".");
			title = jQuery(this).attr('title')
			$(this)
				.after('<a href="mailto:'+addr+'" title="'+title+'">'+ addr +'</a>')
				.remove();
		});
	};
})(jQuery)




