level 1
</script>
<script type="text/javascript" >
$(function () {
var st = 180;
$('#nav_all>li').mouseenter(function () {
$(this).find('ul').stop(false, true).slideDown(st);
}).mouseleave(function () {
$(this).find('ul').stop(false, true).slideUp(st);
});
});
</script>
2015年12月18日 14点12分
1