﻿$(document).ready(function() {
					
	 accordeonDropDown();

});

function accordeonDropDown() {

 $(".illustr_acces").hide()	
 $(".bt_acces_espace_particulier .illustr_acces").show()	

 $("a.bt_acces").click(function() {

	if ($(this).is(".active")) {
	 $("a.bt_acces").removeClass("active");
	 $(this).next(".illustr_acces").slideUp()
	} else {
	 $("a.bt_acces").removeClass("active");
	 $("a.bt_acces").next(".illustr_acces").slideUp();
	 $(this).addClass("active");
	 $(this).next(".illustr_acces").slideDown();
	}
 });
}
			