jQuery(document).ready(function() {

  jQuery("div.album-thumb-hover").mouseenter(function() {
    jQuery(this).find(".album-hover-links").stop(1,1).slideDown();
  }).mouseleave(function(){
    jQuery(this).find(".album-hover-links").stop(1,1).slideUp();
  });


});
