  		$(document).ready(function(){
  			
// gestion des résumés, show-hide
  			// ouverture des éléments cachés par défaut
  			$(".showjs").show();
  			
  			//  fermeture des résumés			
  			$(".texte_intro_article").hide();
  			$(".texte_intro_breve").hide();

				// fermeture liste articles et brèves du plan
  			$(".liste-plan").hide();

				// fermeture des boutons "hide"
//  			$("#h-abstracts-art").hide();
//  			$("#h-abstracts-bre").hide();

				// activation bouton "show abstracts" articles
        $("#s-abstracts-art").click(function () {
  				$(".texte_intro_article").each(function () {
  						id_sel_local = this.id;
      				$("#h-"+id_sel_local).show();
      				$("#s-"+id_sel_local).hide();
      				$("#"+id_sel_local).show();  				
  				});
//  				$("#h-abstracts-art").show();
//  				$("#s-abstracts-art").hide();
  			});
  			
				// activation bouton "hide abstracts" articles
        $("#h-abstracts-art").click(function () {
  				$(".texte_intro_article").each(function () {
  						id_sel_local = this.id;
      				$("#h-"+id_sel_local).hide();
      				$("#s-"+id_sel_local).show();
      				$("#"+id_sel_local).hide();  				
  				});
//  				$("#h-abstracts-art").hide();
//  				$("#s-abstracts-art").show();
  			});

				// activation bouton "show abstracts" brèves  			
        $("#s-abstracts-bre").click(function () {
  				$(".texte_intro_breve").each(function () {
  						id_sel_local = this.id;
      				$("#h-"+id_sel_local).show();
      				$("#s-"+id_sel_local).hide();
      				$("#"+id_sel_local).show();  				
  				});
//  				$("#h-abstracts-bre").show();
//  				$("#s-abstracts-bre").hide();
  			});
  			
				// activation bouton "hide abstracts" brèves
        $("#h-abstracts-bre").click(function () {
  				$(".texte_intro_breve").each(function () {
  						id_sel_local = this.id;
      				$("#h-"+id_sel_local).hide();
      				$("#s-"+id_sel_local).show();
      				$("#"+id_sel_local).hide();  				
  				});
//  				$("#h-abstracts-bre").hide();
//  				$("#s-abstracts-bre").show();
  			});
  			
  			// activation des boutons individuels
  			// ils sont tous marqués par la classe "show-hide"
  			$(".show-hide").each(function () {
  				id_sel = this.id;
  				id_sel = id_sel.substring(2);
        	
        	$("#s-"+id_sel).show();
        	        	
        	$("#s-"+id_sel).click(function () {
  						id_sel_local = this.id;
  						id_sel_local = id_sel_local.substring(2);
      				$("#h-"+id_sel_local).show();
      				$("#s-"+id_sel_local).hide();
      				$("#"+id_sel_local).show();
  				});
  				
        	$("#h-"+id_sel).click(function () {
  						id_sel_local = this.id;
  						id_sel_local = id_sel_local.substring(2);
      				$("#h-"+id_sel_local).hide();
      				$("#s-"+id_sel_local).show();
      				$("#"+id_sel_local).hide();
  				});
  				
  			});

// fin gestion des résumés, show-hide

// gestion des mots-clés, listes des articles
				// ouverture des boutons des mots-clés
  			$(".mot-titre-check").show();
				
				etatMotsCles = new Array();
  			// activation des boutons individuels
  			// ils sont tous marqués par la classe "show-hide"
  			$(".mot-titre-check").each(function () {
  				id_sel = this.id;

  				etatMotsCles[id_sel] = true;
  				
        	$("#"+id_sel).click(function () {
  					id_sel_local = this.id;
        		if (etatMotsCles[id_sel_local] == true) {
      				$("."+id_sel_local).hide();
      				etatMotsCles[id_sel_local] = false;
      				$("#"+id_sel_local).css("background-image", "url(squelettes/images/commun/CheckmarkOff.png)");
      				$("#"+id_sel_local+">span").css("color", "#999999");
        		} else {
      				$("."+id_sel_local).show();
      				etatMotsCles[id_sel_local] = true;
      				$("#"+id_sel_local).css("background-image", "url(squelettes/images/commun/CheckmarkOn.png)");
      				$("#"+id_sel_local+">span").css("color", "#0a0a0a");
        		}
  				});
  			});
				
// fin gestion des mots-clés, listes des articles
				

  });

