$(document).ready(function(){
		  $('#top-center').hover(function(){
		         $(this).children('.front').stop().animate({'top' : '200px'}, 500);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
$('#top-center2').hover(function(){
		         $(this).children('.front').stop().animate({'top' : '200px'}, 500);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
$('#top-center3').hover(function(){
		         $(this).children('.front').stop().animate({'top' : '200px'}, 500);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
$('#top-center4').hover(function(){
		         $(this).children('.front').stop().animate({'top' : '200px'}, 500);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
		 
});
