/* ================================================================================ */
/* = fonctions = */
/* ================================================================================ */
	$(document).ready(function() {
		
		// contenu fiche detail
		$(".detailExtended").hide();
		$("p.lnkInfos").click(
			function() {
				if ($(this).hasClass("moins")) {
					$(this).removeClass("moins");
					$(this).addClass("plus");
					$(this).next().hide();
				} else {
					//symbole + ou -
					$("p.lnkInfos").removeClass("moins");
					$("p.lnkInfos").addClass("plus");
					$(this).removeClass("plus");
					$(this).addClass("moins");

					//affichage de la zone étendue
					$(".detailExtended").hide();
					$(this).next().show();
				}
			}
		);
	
	});

