// © Jesse Pinuelas
$(function() {
		$('.videoLink').click(function() {
			$('#video').fadeIn(500);
		});	 
});

$(function() {
		$('#closeVideo').click(function() {
			$('#video').fadeOut(500);
		});	 
});
