// JavaScript Document
$(document).ready(function() {
			$("a.fancybox").fancybox({
				'titleShow'			: true,
				'type'				: 'image',
				'autoScale'			: true,
				'overlayOpacity'	: 0.8,
				'overlayColor'		: '#000'
			});
			$("#goToGuestbook").fancybox({
				'titleShow'		: true,
				'type'			: 'iframe',
				'autoScale'		: true,
				'width'			: 900,
				'height'		: 600,
				'overlayOpacity'	: 0.5,
				'overlayColor'		: '#000'
			});
			$("a[rel=album]").fancybox({
				'titleShow'			: true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title +'</span>';
				},
				'overlayOpacity'	: 0.9,
				'overlayColor'		: '#000'
			});
			$(function () {
				var liftoffTime = new Date(jaar, maand - 1, dag, 14, 0, 0)
				$('#defaultCountdown').countdown({until: liftoffTime, format: 'dHMS'});
				$('#year').text(liftoffTime.getFullYear());
			});
			$("#contactform").validationEngine({
			});
			
				$("#newsLetter").fancybox({
					'titleShow'		: true,
					'type'			: 'iframe',
					'autoScale'		: true,
					'width'			: 900,
					'height'		: 600,
					'overlayOpacity'	: 0.5,
					'overlayColor'		: '#000'
					})
});