$(function(){
	
	$('.services-box img, .book img').tipsy({title: 'alt'});
	
	$('.wtf').tipsy({title: 'data-tip'});
	
	$(window).load(function(){
		$('#gallery').isotope({
			itemSelector : '.isotope-item',
			masonry : {
			    columnWidth : 256
			}
		});
		
		$('.isotope-container').isotope({
			itemSelector : '.isotope-item',
			transformsEnabled: false
		});
	});
	
	/* Fancybox */
	$("a[rel=gallery]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	400, 
		'speedOut'		:	200
	});
	
});

