$(document).ready(function() {

$(".tooltip-info a[title]").tooltip({

   // tweak the position
   offset: [230, 2],

   // use the "slide" effect
   effect: 'slide'

// add dynamic plugin with optional configuration for bottom edge
}).dynamic({ bottom: { direction: 'up', bounce: false } });

});
