$(document).ready(function(){   
    $('.top_menu_container').hover(function(){       
        $(this).children('ul').stop(true, true).slideDown(200);
    }, function() {
       $(this).children('ul').stop(true, true).fadeOut(500);
    })
    $('.top_menu_container ul').mouseover(function(){
        $(this).stop(true, true).slideDown(200);
    })
})

