$(document).ready(function(){
  //TOUTES LES FONCTIONS JQUERY SPECIFIQUES DU SITE

  $("#catalogue").mouseover(function(){
    $('#bandeau_spaw').css({visibility:'hidden'});
    $('#menu_catalogue').show();
  });
  
  $("#catalogue").mouseout(function(){
    $('#menu_catalogue').hide();
    $('#bandeau_spaw').css({visibility:'visible'});
  }); 
  
  $("#sup_fermer").click(function(){
    $("#supersticiel").fadeOut('normal');
  });
       
});
