$.fn.amail = function(sAt,sDot,sRepl){

	if (!sAt)
		sAt = '||';
		
	if (!sDot)
		sDot = '|';
	
	if (!sRepl)
		sRepl = 'NOSPAM';
	
	
	this.each(function() {
					  
		el = $(this);
		var mail = el.text().replace(sAt,'@').replace(sDot,'.').replace(sDot,'.').replace(sRepl,'');
		el.each(function(){
		el.attr('href','mailto:' + mail);
		if(el.attr('title')){
			el.html(el.attr('title'));
		}else{
			el.html(mail);
			}
		});
	});
};
