$(document).ready(function(){
	
	/*** Images Tooltip ***/
    jQuery(".mod-locations-buttons a.name").tooltip({
		tip: ".overlay",
		effect: 'fade',
        relative: true,
		position: 'top center',
		onBeforeShow: function(){
			this.getTip().addClass("tooltip");
		},
		events: {
		  def:     "mouseenter,mouseleave",
		  tooltip: "mouseenter,mouseleave"
		}
	}).dynamic( { 
        bottom: { 
            direction: 'down', 
            bounce: true 
        },
        right: { 
            direction: 'right', 
            bounce: true 
        }
    });
	
});
