nouveau style menu_top
[mtweb] / mw / app / out / default / js / script.js
1 $(document).ready(
2   function(){
3     init_menu_top();
4   }
5 );
6
7 function init_menu_top(){
8   $("#menu_top ul li").hover(
9     function(){
10       $(this).find(".menu").first().slideDown(200);
11     },
12     function(){
13       $(this).find(".menu").first().slideUp(200);
14     }
15   );
16 }