function plan_site() {

      jQuery('#contacts_menu').click();

}


function mentions_legales() {

       jQuery.ajax({
          type:'GET',
          url:'inc/mentions_leg.php',
          success:function(msg){
            jQuery('#zone_contenu').html(msg);
            }

        });

}


function credits() {

       jQuery.ajax({
          type:'GET',
          url:'inc/credits.php',
          success:function(msg){
            jQuery('#zone_contenu').html(msg);
            }

        });

}


function access() {

       jQuery.ajax({
          type:'GET',
          url:'inc/access.php',
          success:function(msg){
            jQuery('#zone_contenu').html(msg);
            }

        });

}


function flux_rss() {

       jQuery.ajax({
          type:'GET',
          url:'inc/flux_rss.php',
          success:function(msg){
            jQuery('#zone_contenu').html(msg);
            }

        });

}

function lexique() {

       jQuery.ajax({
          type:'GET',
          url:'inc/lexique.php',
          success:function(msg){
            jQuery('#zone_contenu').html(msg);
            }

        });

}














function footer() {

       jQuery.ajax({
          type:'GET',
          url:'inc/footer.php',
          success:function(msg){
            jQuery('#footer').html(msg);
            
                            jQuery('#contact').click(function(){
                          
                
                              contacts_contenu();
                              jQuery('#contacts_menu').click();
                          
                          
                              });
                              
                              
                              jQuery('#mention_leg').click(function(){

                              mentions_legales();
                          
                              });
                              
                              
                              jQuery('#credits').click(function(){

                              credits();
                          
                              });
                              
                              jQuery('#access').click(function(){

                              access();
                          
                              });
                              
                              
                              jQuery('#flux').click(function(){

                              flux_rss();
                          
                              });
                              
                              jQuery('#lexique').click(function(){

                              lexique();
                          
                              });
                              
                              
                              jQuery('#plan_site').click(function(){

                              plan_site();
                          
                              });
            }

        });

}





jQuery(document).ready(function(){

  footer();
  
  
  });