сделал вот так но есть проблема
меню теперь закрывается при наведении на содержимого контейнера #ed1pod
jQuery.noConflict();
jQuery(document).ready(function() {
var t;
jQuery('#ed1, #ed1pod').hover(function() {
clearTimeout(t);
jQuery('#ed1pod').animate({
opacity: 0.9,
height: 'toggle'
}, 1000, function() { });
}, function() {
t = setTimeout(function() {jQuery('#ed1pod').fadeOut();}, 2000);
});
});