$(document).ready(function() {
	
	$("a.single").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.group").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'frameWidth'			: 1068,
		'frameHeight'			: 799,
		'hideOnContentClick'	: true
	});
	
	$("a.group2").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'frameWidth'			: 720,
		'frameHeight'			: 538,
		'hideOnContentClick'	: true
	});
	
	$("a.video").fancybox({
		'zoomOpacity'			: false,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'frameWidth'			: 672,
		'frameHeight'			: 405,
		'hideOnContentClick'	: true
	});
	
	
	var fadeDuration = 100; //time in milliseconds
	
	$('.sideNav li a').hover(function() {
    	$(this).animate({ paddingLeft: '21px' }, fadeDuration)
        .animate({ paddingLeft: '18px' }, 50 );
    }, function() {
    	$(this).animate({ paddingLeft: '14px' }, fadeDuration);
    });

});
