/**
 * @author Jose De Sousa
 */

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

});