$(document).ready(function() {
	$('.viewport').mouseenter(function(e) {
		$(this).children('a').children('img').animate({ height: '265', left: '0', top: '0', width: '158'}, 100);
		$(this).children('a').children('span').fadeIn(200);
	}).mouseleave(function(e) {
		$(this).children('a').children('img').animate({ height: '305', left: '-7', top: '-20', width: '172'}, 100);
		$(this).children('a').children('span').fadeOut(200);
	});
});
