/**
 * @author user
 */

$().ready(function(){
  $('.nom').append('<span class="adroite">Fiche détaillée</span>')
  $('.entreprise').hover(  
    function () {
      $(this).addClass("hover-entreprise");
    },
    function () {
      $(this).removeClass("hover-entreprise");
    }
  )
  $('.entreprise').click(
    function () {
      $(this).find('.details').addClass('loaded');
      if ($(this).find('.details').is(":hidden")) {
        $(this).find('.details').slideDown("slow");
        $(this).find('.adroite').text("Replier");
      } else {
        $(this).find('.details').slideUp("slow");
        $(this).find('.adroite').removeClass('bas');
        $(this).find('.adroite').text("Fiche détaillée");
      }      
    }
  )
})

