
jQuery(document).ready(function() {

	$("span.mailme").mouseenter(function(){
		$(this).html("<a href='mail" + "to:"+$(this).attr("title")+"@"+"ancud.de'>"+$(this).html()+"</a>");
	});
	
	$("span.mailme").mouseleave(function(){
		$(this).html($(this).children().html());
	});

});
