// JavaScript Document

$(document).ready(function(){
	$('a.cmail').each(function(index,element){
		$(this).attr('href','mailto:'+$(this).attr('title')+'@centredesornetan.ch');
		$(this).html($(this).attr('title')+'@centredesornetan.ch');
	});
	
	$('span.cmail').each(function(index,element){
		$(this).attr('href',$(this).attr('title')+'@centredesornetan.ch');
		$(this).html($(this).attr('title')+'@centredesornetan.ch');
	});
});
