$(document).ready(function() {
	
	$("a.contact").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity'	:	0.8,
		'overlayColor'	:	'#000000',
		'padding'		:	0,
		'centerOnScroll':	true
	});
	
	
	$(".photos a").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayOpacity'	:	0.8,
		'overlayColor'	:	'#000000',
		'padding'		:	4,
		'centerOnScroll':	true
	});
	
	$("#switcher a").hover(function() {
        $(this).stop().animate({bottom: "-34"}, 200);
    }, function() {
        $(this).stop().animate({bottom: "0"}, 100);
    });
	
	
	
	
});
