tishka,
вместо вашего кода
$(".class-partner tr td .views-field-title").hide();
$(".class-partner td").mouseenter(function(){
$('.views-field-title', this).stop(true,true).show("slide");
});
$(".class-partner td").mouseleave( function() {
$('.views-field-title', this).stop(true,true).hide("drop",{ direction: "up" }, "slow");
});