Да я уже сделал
Вот такой вот код простой получился:
$("#dle-content").mouseover(function(){
$('.main-news').hover(
function() {
$(this).find('.main-news-hidden').stop().animate({
'bottom':'0'
},400
);
}, function() {
$(this).find('.main-news-hidden').stop().animate({
'bottom':'-135'
},300
);
});
});