$(document).ready(function(){
  $('.boxgrid.caption').hover(function() {
    $(".cover", this).stop().animate({top:'130px'},{queue:false, duration:160});
    }, function() {
    $(".cover", this).stop().animate({top:'210px'},{queue:false, duration:160});          
  });
  $('.boxgrid.caption').hover(function() {
    $(".date", this).stop().animate({top:'0px'},{queue:false, duration:160});
    }, function() {
    $(".date", this).stop().animate({top:'-30px'},{queue:false, duration:160});          
  });
  $('.boxgrid.captionfull').hover(function() {
    $(".cover", this).stop().animate({top:'0px'},{queue:false, duration:160});
    }, function() {
    $(".cover", this).stop().animate({top:'250px'},{queue:false, duration:160});          
  });
  $('.boxgrid.captionabout').hover(function() {
    $(".cover", this).stop().animate({top:'180px'},{queue:false, duration:160});
    }, function() {
    $(".cover", this).stop().animate({top:'210px'},{queue:false, duration:160});          
  });
});
