jQuery (document).ready(function(){
	
 $('.tTip').betterTooltip({speed: 150, delay: 300});

 jQuery (".a").hover(
 function() {
  jQuery (this).animate({"opacity": "0"}, 300);
 },
 function() {
  jQuery (this).animate({"opacity": "1"}, 300);
 });
 $("a.single_image").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
  });
});