$(document).ready(function() {

  $("#accordion").accordion({
	collapsible: true,
	active:false,
	icons: {'header': 'arrow', 'headerSelected': 'arrow_down'},
	changestart: function(){ 
		if($("#ensavoirplus").is(":visible"))
		{
			$(".ensavoirplusHeader").html('<a href="#" class="ensavoirplusHeader">en savoir plus (parcours professionnel et formation)</a>');
		}
		else
		{
			$(".ensavoirplusHeader").html('<a href="#" class="ensavoirplusHeader">fermer</a>');
		}
		
	}
  });
  
  $(".accordionMetier").accordion({
	collapsible: true,
	active:false,
	icons: {'header': 'arrow', 'headerSelected': 'arrow_down'},
	changestart: function(){ 
		var initValue = $(this).find("a.toggle").attr("title");
		if($(this).find("a.toggle").html() == initValue)
		{
			$(this).find("a.toggle").html("fermer");
		}
		else
		{
			$(this).find("a.toggle").html(initValue);
		}
	}
  });

  
});
