projects
/
mtweb
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
384a53dce82c8e48d844538f588a3024ae8bc901
[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
}