(function ($) { 
  $.fn.eujmail = function() { 
  	return this.each(function () { 
		var name = '';
		var text = $(this).text();		
		for(count=text.length; count >= 0; count--) { 
			name += text.substring(count,count-1);
		};
		var anzeige = name.split('//');
		var eMail = anzeige[0]+anzeige[1];
		$(this)
			.attr({ title: 'E-Mail', href: '#' })
			.mousedown(function() { $(this).attr({ href: 'mailto:'+eMail }); })
			.keydown(function(e) { if (e.which == 13) { $(this).attr({ href: 'mailto:'+eMail }); }  })
			.mouseout(function() { $(this).attr({ href: '#' }); })
	});
  };
})(jQuery);
