$(document).ready(function() {
    $(".phone").hover(function() {

        $(this).animate({ height: '160px' }, "slow");
    }
    , function() {
    $(this).animate({ height: '30px' }, "slow");
    });
})
