$(document).ready(function() {
    $("div.prod_wrap").hover(function() {
        $(this).find("div.prod_info").stop().animate({ top: "60px" }, "fast").css("display", "block");
    }, function() {
        $(this).find("div.prod_info").stop().animate({ top: "250px" }, "medium");
    });

});
