// Thumbnail opacity
jQuery(document).ready(function(){
 jQuery('.ngg-gallery-thumbnail').hover(function(){
  jQuery('img', this).stop().animate({opacity: 1});
 }, function() {
  jQuery('img', this).stop().animate({opacity: 0.3});
 });
});

