$(document).ready(function(){
    $(".drop_body").hide();  
    $(".drop_click").hover(  
        function(){  
            $(this).children(".drop_body").slideDown('500');  
        }, function(){  
    // Add stop() on the mouse out portion  
            $(".drop_body").stop('false','false').slideUp('500');  
        });  

});
