/* JQuery code used to obscure all e-mail addresses on the site */

(function($) {
	$.fn.emailEncode = function(options) {
		var settings = jQuery.extend({
			atsign: "*"
		}, options);

		return this.each(function() {
			var address = $(this).attr("href");
			$(this).attr("href", "mailto:" + address.replace(settings.atsign, "@"));
			
			var address2 = $(this).html();
			$(this).html(address2.replace(settings.atsign, "@"));
		});
	};
})(jQuery);

