function toggle_btn(div){
  if(div.attr('rel')!='1'){
    div.parent().parent().animate({
      right:'-25px'
    });
    div.attr('rel','1')
  }
  else{
    div.parent().parent().animate({
      right:'-170px'
    });
    div.attr('rel','0')
  }
}

$(document).ready(function() {
  var temp =  $('.feloginsystem_txt_loggedinas').html();
  if(temp){
    $('#c66').replaceWith('<div id="logout"><a class="bouton" href="'
                                  + location.href 
                                  + '?logintype=logout">' 
                                  + temp 
                                  + ' se déconnecter<a></div>');
  }
    
  toggle_btn($('.tx-feuserloginsystem-pi1 > .btn_connexion'));
  
  $('.btn_connexion').click(function(){
    toggle_btn($('.tx-feuserloginsystem-pi1 > .btn_connexion'));
  });
  
}); ﻿
