$(document).ready(function() {
	$('#masthead').click(function() {
		window.location = '/';
		return false;
	});

	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'95px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'135px'},{queue:false,duration:160});
	});
	
	//Typekit
	$('#typekit-badge-nji5rht').css('visibility', 'hidden');
});