$(document).ready(function() {
	
	if($.cookie('linfini_videocookie') == null) {
		$.fancybox(
			'http://www.linfini.be/video/index.html'
			,{
			'autoDimensions'	: false,
			'width'         	: 500,
			'height'        	: 281,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'centerOnScroll'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#c18c43',
			'type'				: 'iframe'
		});
		
		$.cookie('linfini_videocookie', 'played', { expires: 365 });
	}  else {
	
		$.fancybox({
			'padding'		: 5,
			'href'			: 'http://www.linfini.be/img/valentijn_front.jpg',
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'centerOnScroll'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#c18c43'
			
		});


		// make the image in the overlay clickable, must use live because the content is written after dom build
		$("#fancybox-img").live("click", function(){ 
			document.location = "http://www.linfini.be/kaart/valentijn2012/index.html"; 
		}); 
	} // end


	/** 
	 *
	 */
	$("a#video").click(function(){
		$.fancybox(
			'http://www.linfini.be/video/index.html'
			,{
			'autoDimensions'	: false,
			'width'         	: 500,
			'height'        	: 281,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'centerOnScroll'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#c18c43',
			'type'				: 'iframe'
		});
		return false;
	}); // end 
	

	/** 
	 *
	 */
	$("#gratisKoffie").click(function(){
		$.fancybox(
			'http://www.linfini.be/subscribe/subscribe.php'
			,{
			'autoDimensions'	: false,
			'width'         	: 540,
			'height'        	: 380,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'centerOnScroll'	: true,
			'overlayOpacity'	: '0.9',
			'overlayColor'		: '#c18c43',
			'type'				: 'iframe'
		});
		return false;
	}); // end 
	

	function writeemail(text) {
		var host ='@linfini.be';
		var email = text + host;
		document.write('<a href="mailto:' + email + '">'+ email + '</a>');
	}
});

