$(function() {
   $('.ngg-gallery-thumbnail').hover( 
   function(){
	$('.gallery-overlay', this).stop().animate({"opacity": "1"}, "slow");
   },
   function(){
      $('.gallery-overlay', this).stop().animate({"opacity": "0"}, "slow");
   });
});

$(function() {
   $('.ngg-album-link').hover( 
   function(){
	$('.album-overlay', this).stop().animate({"opacity": "1"}, "slow");
   },
   function(){
      $('.album-overlay', this).stop().animate({"opacity": "0"}, "slow");
   });
});

