$(function(){
	$('.box').hover(function(){
		$(this).children('.overlay').animate({'top' : '-=420px', 'left' : '-=420px'},500);
		$(this).children('.content').fadeOut(500);
		
	},function(){
		$(this).children('.overlay').animate({'left' : '-70px', 'top' : '-140px'},500);
		$(this).children('.content').fadeIn(500);
		
		
	});

});
