/* overlays the logo in the slider */
$(function(){
	$('.link-meta').click(function() {
		$('.overlay').show();
		$('h1').addClass('hidden');
	})
	
	$('.close').click(function() {
		$('.overlay').hide();
		$('header h1').removeClass('hidden');
	})
});
