jQuery(document).ready(function($) {
	// $() will work as an alias for jQuery() inside of this function
	jQuery(".thumb").tooltip({
 
	   // tweak the position
	   offset: [80, 0],
 
	   // use the "slide" effect
	   effect: 'slide',
 
	   delay: 200,
 
	   relative: false,
 
	   position: 'top center'
 
	// add dynamic plugin with optional configuration for bottom edge
	});

});
