/*
 * jQuery aMail plug-in 1.1
 * (c) 2009 Max Ya  ( http://iHackWeb.com )
 * Inspired by epemail plugin/
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * 
 * modified by gcmingati.net
	
 *
*/
$.fn.amail = function(sAt,sDot,sRepl){	
	this.each(function() {		  
		el = $(this);
		var mail = el.attr('href').replace(sAt,'@').replace(sDot,'.').replace(sRepl,'');
		el.each(function(){
		el.attr('href', mail);
		});
	});
};
