function mask(nom,dom,dlt){
	adr = nom+'@'+dom+'.'+dlt;
	sortie = '<a href="mailto:'+adr+'">'+adr+'</a>'
	return sortie;
}

$(document).ready(function(){
	/*$("#menu a img").bind('mouseover',function(){
		if($(this).attr('class') != 'actif'){
		source = $(this).attr('src');
		source2 = source.split('.');
		$(this).attr('src',source2[0]+'h.jpg');
		$(this).mouseout(function(){
			$(this).attr('src',source);	
		});
		}
	});*/
	
	$("#menu2 li a.actif").prepend('<img src="img/layout/camelia.jpg"> ').append(' <img src="img/layout/cameliaD.jpg">');
	
	$(".ml").each(function(){
		$(this).html(mask('contact','chateaudepuyrigaud','com'));
	});
		$(".ml2").each(function(){
		$(this).html(mask('vm','vincent-marcel','com'));
	});
});


