reorganisation des dossiers
[mtweb] / web / out / dist / js / menu.js
diff --git a/web/out/dist/js/menu.js b/web/out/dist/js/menu.js
deleted file mode 100644 (file)
index aca3c76..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-$(document).ready(
-  function (){
-    init_menu_links();
-  }
-);
-
-// ---------------------------------------- menus header
-
-var menu = null;
-
-function checkHover(){
-  if(menu) menu.find('ul').fadeOut('fast');
-}
-
-function init_menu_links(){
-  $('.menu li').hover(
-    function(){
-      if(menu){
-        menu.find('ul').fadeOut('fast');
-        menu = null;
-      }
-      $(this).find('ul').fadeIn('fast');
-    },
-    function(){
-      menu = $(this);
-      setTimeout("checkHover()", 80);
-    }
-  );
-}