(function($){
	$.fn.emldfsct = function() {		
		return this.each(function() {			
			var email = $(this).html().replace(//ig, "@").replace(//ig, ".");
			var $conv = $("<div>").text($(this).attr("title"));			
			var title = $conv.html().replace(//ig, "@").replace(//ig, ".");
			if (title == null || title == "")
				title = email;
			$(this).removeClass("defscteml");
			$(this).attr("title", null);
			$a = $("<a>");
			$.map(this.attributes, function(item) {
				if (item)
			    	$a.attr(item.name, item.value) ;
			});
			$a.attr("href", "mailto:" + email).html(title);
			$(this).replaceWith($a);
		});
	};	
})(jQuery);
