(function($){
	$.fn.emldfsct = function() {		
		return this.each(function() {			
			var email = $(this).text().replace(/\\u0001/g, "@").replace(/\\u0002/g, ".");
			$(this).removeClass("defscteml");
			$a = $("<a>");
			$.map(this.attributes, function(item) {
				if (item)
			    	$a.attr(item.name, item.value) ;
			});
			$a.attr("href", "mailto:" + email).html(email);
			$(this).replaceWith($a);
		});
	};	
})(jQuery);
