jQuery.fn.mailto = function() {
	return this.each(function(){
		var email = $(this).html().replace(/\s*\(.+\)\s*/, "@");
		$(this).html(email);
		$(this).attr("href", "mailto:" + email);
	});
};
