
$(document).ready(function(){
    $("#header_menu li").hover(
        function() {
            $(".drop-down-menu", this).stop( true, true ).slideDown( 200 );
            
        },
        function() {
            $(".drop-down-menu", this).slideUp( 150 );
        }
    );
});