$(document).ready(function() {
    // animazione hover sulle vetrinette
    $('div.image_wrapper').hover(
        function() {
            var son = $(this).children('h5');
            son.animate({"top": $(this).height()-son.height()}, "fast");
        },  
        function() {
            var son = $(this).children('h5');
            son.animate({"top": $(this).height()}, "fast");
        }
    );
    $('div.image_wrapper').each(function() {
        var height = $(this).height();
        if (height < 70) {var height = 300};
        $(this).children('h5').css("top", height);
    });
});

