/*
    Based on this article:      
    // http://www.html-advisor.com/javascript/hide-email-with-javascript-jquery/
*/

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

})(jQuery);
