$(function() {
        $('.latestproj1').hover(function() {
            $(this).children('.front').stop().animate({ "top" : '160px'}, 400);   
        }, function() {
            $(this).children('.front').stop().animate({ "top" : '0px'}, 500);       
        });
    });
   