47aaba9422aabf5ccd2949a82569d0a3cf184747
[mtweb] / web / out / dist / js / menu.js
1 $(document).ready
2 ( function ()
3   { init_menu_links();
4   }
5 );
6
7 // ---------------------------------------- menus header
8
9 var menu = null;
10
11 function checkHover()
12 { if(menu) menu.find('ul').fadeOut('fast');
13 }
14
15 function init_menu_links()
16 { $('.menu li').hover
17   ( function()
18     { if(menu)
19       { menu.find('ul').fadeOut('fast');
20         menu = null;
21       }
22       $(this).find('ul').fadeIn('fast');
23     },
24     function()
25     { menu = $(this);
26       setTimeout("checkHover()", 80);
27     }
28   );
29 }