// JavaScript Document
$(document).ready(function() {

	// initialize tooltip normally
	$("#dyna img[title]").tooltip({
		tip: '#dynatip', 
		offset: [0, 5, -2, 0]
		
	// add dynamic plugin 
	}).dynamic( {
	
		// customized configuration on bottom edge
		bottom: {
			direction: 'down', 
			bounce: true
		}
	});
	
});
