jQuery(document).ready(function() {
    jQuery('.content-3cols .right-box .csc-textpic-imagewrap img').mouseover(function(){
        jQuery(this).animate({ 
            top: '0'
        }, 1);
    });
    jQuery('.content-3cols .right-box .csc-textpic-imagewrap img').mouseout(function(){
        jQuery(this).animate({ 
            top: '-121px'
        }, 1);
    });

});

