$(document).ready(function(){
  
  
  //Page parcours
  if($("#content").length){
    //Initialisation du contenu de la page
    $("#bloc_01").fadeIn();
    
    // Définition des actions sur les liens
    $(".lien_submenu").click(function(e){
      
      e.preventDefault();
      blocToDislay = "#bloc"+$(this).attr("id");
      $(".lien_submenu").removeClass("actif");
      
      $(this).addClass("actif");
      $(".bloc_contenu:visible").fadeOut("slow",function(){
        $(blocToDislay).fadeIn();
      });
    });
  }
  
  // On place les bonnes marges pour  les logos partenaires
  
  $(".lst_partenaires_line").each(function(){
    var $line = $(this);
    var paddingLeft = ($line.parents("#lst_partenaires").width() - $line.width())/2;
    $line.css("padding-left", paddingLeft+"px");
  });
  
  
  $(".bloc_partenaire").find("img").each(function(){
    var $img = $(this);
    var marginTop = ($img.parents(".bloc_partenaire").height() - $img.height())/2;
    $img.css("margin-top", marginTop+"px");
  });
 
  
  
});
