В принципе неправильно HTML подсказки вклеен
Он должен вклеивацо так
<a href="./cart/">Корзина
<div style="display:inline-block">
<!--Тут HTML контент подсказки с position:absolute; -->
</div>
</a>
Тогда достаточно
$("#cart_informer").mouseenter(function(){
$('.tooltip_cart').stop().fadeIn('fast');
}).mouseleave(function(){
$('.tooltip_cart').stop().fadeOut('slow');
});