$(document).ready(function(){
	// Fancybox
	$(".gallery a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayColor'  :   '#000'
	});
	
	// Button links
	$('.homePictures div').hover(
		function() {
			$(this).find('span.fade').stop().animate({opacity: 1}, 400);
		},

		// Hide
		function() {
			$(this).find('span.fade').stop().animate({opacity: 0}, 400);
		}
	);
	
	// Button links
	$('.buttonLinks a').hover(
		function() {
			$(this).stop().animate({'margin-left': '10px'}, 200);
		},

		// Hide
		function() {
			$(this).stop().animate({'margin-left': '0px'}, 200);
		}
	);
});



