$(document).ready(function()
{

  // MENU
   
  $('#menu > ul > li > ul').each(function(){
    $(this).hide();
  });
  
  $('#menu > ul > li').hover(
    function(){      
      $(this).find('a').addClass('open');
      $(this).find('ul').fadeIn('fast');
    },
    function(){
      $(this).find('a').removeClass('open');
      $("#menu *:animated").stop(true,true).hide();
      $(this).find('ul').hide();
    }
  );
  
  
  // TABLEAUX
  $(".sortable").tablesorter(); 
  
  // BOUTON DU MOTEUR DE RECHERCHE
  $('input.submit:image').mouseover(function(){
    $(this).attr('src', $(this).attr('src').replace('btn_ok', 'btn_ok_on')); 
  });
  $('input.submit:image').mouseout(function(){
    $(this).attr('src', $(this).attr('src').replace('btn_ok_on', 'btn_ok')); 
  });
  
  
  // ANCRES
  $('a[href*=#]')
  .not('a[href=#]')
  .bind('click', function()
  {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
         $('html,body').animate({scrollTop: targetOffset - 40}, 'normal');
         return false;
      }
    }
  });
  
  
});

 

