$(document).ready(function(){

$(".wrap div").hover(function() {
	$(this).animate({"top": "-140px"}/*O quanto irá para top*/, 400/*DelayTimeGo*/, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 400/*DelayTimeBack*/, "swing");
});

});
