$(document).ready(function() {

  var currentId = null;
  
  $("a.logo-container").hover(function() {
    
    currentId = $(this).attr('id');
    $("a#"+currentId+" div.overlay").animate({'top':'-=89px'});
    
  }, function() {
    
    currentId = $(this).attr('id');
    $("a#"+currentId+" div.overlay").animate({'top':'+=89px'});
    
  });

});
