// Tabs

$(document).ready(function(){
  $( '#info div:not(:first)' ).hide();
  
  $('#info-nav li').click(function(e) {
    $('#info div').hide();
    $('#info-nav .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#info ' + clicked).fadeIn('fast');
    e.preventDefault();
  }).eq(0).addClass('current');
});

// Recent Work Panels

$(document).ready(function(){
	// //To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	
	// News / Features
	$('.boxgrid').hover(function(){
		$(".cover", this).stop().animate({top:'183px'},{queue:false,duration:50});
	}, function() {
		$(".cover", this).stop().animate({top:'240px'},{queue:false,duration:160});
	});
});
	
	
	

