$(document).ready(function() {
    $('.project, .news').hover(function () {
    $('.panel', this).animate({opacity: 1, marginTop: '-=10', height: '+=10'}, 200);
  }, 
  function () {
    $('.panel', this).animate({opacity: 0.85, marginTop: '+=10', height: '-=10'}, 300);
  }
);
})
