$(document).ready(function() {
    $('.viewport').mouseenter(function(e) {
        $(this).children('a').children('img').animate({ height: '195', left: '0', top: '0', width: '195' }, 100);
        $(this).children('a').children('span').fadeIn(200);
    }).mouseleave(function(e) {
        $(this).children('a').children('img').animate({ height: '145', left: '25', top: '25', width: '145' }, 100);
        $(this).children('a').children('span').fadeOut(200);
    });
});

jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({ scroll: 1 });
});