$(document).ready(function() {
    $('#nav li').hover(function() {
        $('.drop-down', this).stop().slideDown(200);
    }, function() {
        $('.drop-down', this).stop().slideUp(100);
    });
});
$(document).ready(function() {
    $('#nav li').hover(function() {
        $('.drop-down2', this).stop().slideDown(200);
    }, function() {
        $('.drop-down2', this).stop().slideUp(100);
    });
});
$(document).ready(function() {
    $('.nav-box li').hover(function() {
        $('ul', this).stop().slideDown(200);
    }, function() {
        $('ul', this).stop().slideUp(100);
    });
});