/*
* jQuery mailRep v1.1
* http://www.anfibic.com/
*
* Date: 2010-11-12 09:12:10 - (Noviembre, 12 Oct 2010)
*
*/
(function($){	 	
	$.fn.mailrep = function(options){
		var defaults = {
			email:true,
			arroba: 'arroba',
			punto: 'punto',
			titulo: 'Enviar email'
		};
		var options = $.extend(defaults, options);
		$(this).each(function(){
			var elemento = $(this);	
			var direccion = $(elemento).text().replace(" "+options.arroba+" ","@").replace(" "+options.punto+" ",".");
			if (options.email == true) {
				if (options.titulo == false) {
					$(elemento).after('<a href="mailto:'+direccion+'">'+ direccion +'</a>').remove();
				}else {
					$(elemento).after('<a href="mailto:'+direccion+'" title="'+options.titulo+'">'+ direccion +'</a>').remove();
				}
				
			}else {
				$(elemento).after(direccion).remove();
			}
		});
	};
})(jQuery);
