affichage du menu utilisateur dans le header
[mtweb] / mw / app / out / default / js / script.js
index 384a53d..c8139b3 100644 (file)
@@ -1,6 +1,7 @@
 $(document).ready(
   function(){
     init_menu_top();
+    init_menu_user();
   }
 );
 
@@ -14,3 +15,13 @@ function init_menu_top(){
     }
   );
 }
+function init_menu_user(){
+  $("#main_header ul.menu_user li").hover(
+    function(){
+      $(this).find("ul").first().fadeIn(200);
+    },
+    function(){
+      $(this).find("ul").first().fadeOut(200);
+    }
+  );
+}