$(function() {
 			 $('.wrap').hover(function() {
       		   $(this).children('.front').stop().animate({ "top" : '330px'}, 700);   
       		 }, function() {
       		 $(this).children('.front').stop().animate({ "top" : '0'}, 400);       
        });
});