$(document).ready(function(){
  $('.tooltip-target').ezpz_tooltip({
    contentPosition: 'aboveStatic',
    offset: 5,
    showContent: function(content) {
        content.fadeIn('fast');
    },
    hideContent: function(content) {
      // if the showing animation is still running, be sure to stop it
      // and clear the animation queue. otherwise, repeatedly hovering will
      // cause the content to blink.
      content.stop(true, true).fadeOut('def');
    }
  });

    if ($.fancybox) {
	    $("a.zoom").fancybox({
		    'zoomSpeedIn'		: 250,
		    'zoomSpeedOut'		: 0,
		    'overlayShow'		: false
	    });
    }
});

