//$("[title]").tooltip({ position: "bottom center", effect: "slide", offset: [10, 2]});
// initialize tooltip
$("#links a[title]").tooltip({

   // tweak the position
   offset: [11, 0],

   // use the "slide" effect
   effect: 'slide',
   position: 'bottom center'

// add dynamic plugin with optional configuration for bottom edge
}).dynamic({ bottom: { direction: 'down', bounce: true } });
