jQuery(document).ready(function($) {
	$('div#UI_domaines').hide();
	$('a#firstlink').html('Afficher');
	
	$('a.showseoLinks').click(function(){
		var texte = $('a#firstlink').html();
			
		if (texte == 'Afficher'){
			$('a#firstlink').html('Masquer') ;
		}
		else if(texte == 'Masquer') {
			$('a#firstlink').html('Afficher')  ;
		}
	});
	
	$('a#firstlink').click(function(){
		var texte = $('a#firstlink').html();
			
		if (texte == 'Afficher'){
			$('a#firstlink').html('Masquer') ;
		}
		else if(texte == 'Masquer') {
			$('a#firstlink').html('Afficher')  ;
		}
	});
});
