var mail = 'labservice.it' ;
$(document).ready
(
	function() {
		spans = $('span.email');
		spans.each
		(
			function()
			{
				name = $(this).html();
				name_mail = name + '@' + mail ;
				$(this).html('<a href="mailto:'+name_mail+'">'+name_mail+'</a>')
			}
		); // end names.each
	}
);
