// JavaScript Document
    $(document).ready(function() {
        $('.viewport').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '126', left: '-15', top: '-15', width: '340'}, 100);
            $(this).children('a').children('span').fadeOut(300);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '102', left: '0', top: '0', width: '279'}, 100);
            $(this).children('a').children('span').fadeIn(300);
        });
		
    });
	
