$(document).ready(function() {
	// jQuery Tooltip (Home)
	$("img[title]").tooltip({

   // tweak the position
   offset: [8, 2],

   // use the "slide" effect
   effect: 'slide'

// add dynamic plugin with optional configuration for bottom edge
}).dynamic({ bottom: { direction: 'down', bounce: true } });
});
