$(document).ready(function(){
     $("#onglets ul li a").mouseover(function(){
               $(this).css("cursor", "pointer");
               if ($(this).attr("class") == "onglet-non-courant") {
                    $(this).removeClass("onglet-non-courant");
                    $(this).addClass("onglet-hover");
                    $(this).mouseout(function(){
                         $(this).removeClass("onglet-hover");
                         $(this).addClass("onglet-non-courant");
                    });
               }

       });
       
     $(".menu_deroul").mouseover(function(){
           $(this).css("cursor", "pointer");
           $(".sous_menu").removeAttr("style");
           $(".sous_menu").attr("style", "display: block;");
       });    
});

