Выковырянный из одного из примеров меню ниже скрипт для самого элементарного выпадающего меню...

$(function () {
$('.child-menu').each(function () {
$(this).parent().eq(0).hover(function () {
$('.child-menu:eq(0)', this).show();
}, function () {
$('.child-menu:eq(0)', this).hide();
});
});
});

То же самое, но с анимацией - выпадение вниз (slideDown) и последующее исчезание (fadeOut)

$(function () {
$('.child-menu').each(function () {
$(this).parent().eq(0).hover(function () {
$('.child-menu:eq(0)', this).slideDown(250);
}, function () {
$('.child-menu:eq(0)', this).fadeOut(300);
});
});
});