jQuery(document).ready(function($) {
$('.menu_top li').hover(function() {
 $(this).children('ul').fadeIn('slow');
}, function() {
 $(this).children('ul').fadeOut('fast');
});
});
