I'm trying to make the title animate down when you rolloff the hit area. You will notice its currently working on rollover, title animates up 20px, so basically when you rolloff the title should return to its starting position.
HTML
<div class="thumb">
<div class="content">
<div class="copy">
<h1>Title</h1>
</div>
</div>
</div>
JS
$('.content').hide().removeClass('content').addClass('content-js');
$('.thumb').hover(function () {
$(this).find('.content-js').fadeToggle();
$('.copy h1').animate({'margin-top':'0px'});
});