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