/****************************************************************************************/
/**************************** FAQ >> afficher/masquer les réponses***********************/
/****************************************************************************************/	

function showhide(titre){
	var bt_bloc = titre.id;
	
	var bloc_affiche = document.getElementById('question_'+bt_bloc);
	if (bloc_affiche.style.display == "block"){
		bloc_affiche.style.display="none";
		titre.className = "title title_plus";
	}
	else 
	 { bloc_affiche.style.display="block";
	 titre.className = "title title_minus";
	 }
}
/****************************************************************************************/
/********* info >> afficher/masquer les photos et texxtes associés aux boutons***********/
/****************************************************************************************/	

function showhidephototext(bloc_on, bloc_off){

	$(".popinContent #" + bloc_on).css("display", "none");
	$(".popinContent #" + bloc_off).css("display", "block");
}
/****************************************************************************************/

$(document).ready(function(){
	$("#img_howwork").popinTrigger($("#popin_howwork").html());	
});
