$(document).ready(function() {
	$(window).resize(function() {
		$('#content').css('min-height', window.innerHeight - $('#head').height() - 100);
	}).resize();
	
	$('.video img').click(function() {
		$('#video').fadeIn();
		optimizely.trackEvent('video');
	});
	
	$('#video a.x').click(function() {
		$('#video').fadeOut();
	});
	
	$('a.mail').each(function() {
		var mail = $(this).text().replace('(at)', '@').replace(/\s/g, '');
		
		$(this).text(mail).attr('href', 'mailto:'+mail);
	});
});
