/*
* jQuery mailRep v2.0
* http://www.anfibic.com/
*
* Date: 2011-03-03 09:12:10 - (Marzo, 03 Mar 2011)
*
*/
(function($){	 	
	$.fn.mailrep = function(options){
		var defaults = {
			email:true
			,arroba: 'arroba'
			,punto: 'punto'
			,defaul_text: false
		};
		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.defaul_text == false) {
					$elemento.after('<a href="mailto:'+direccion+'">'+ direccion +'</a>').remove();
				}else {
					var elemento_titulo = $elemento.attr("mailrep");
					if (elemento_titulo != undefined) {
						$elemento.after('<a href="mailto:'+direccion+'" title="'+elemento_titulo+'">'+ elemento_titulo +'</a>').remove();	
					}else {
						$elemento.after('<a href="mailto:'+direccion+'" title="Contactar">Contactar</a>').remove();
					}
				}
			}else {
				$elemento.after(direccion).remove();
			}
		});
	};
})(jQuery);
