$(document).ready(function() {
        $('.viewport').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '100', left: '0', top: '0', width: '175'}, 100);
            $(this).children('a').children('span').fadeIn(200);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '80', left: '0', top: '0', width: '128'}, 100);
            $(this).children('a').children('span').fadeOut(200);
        });
    });
