jQuery(document).ready(function() {
	jQuery(".ngg-gallery-caption").hide();
	
	jQuery(".ngg-gallery-thumbnail").hover(
		function () {
    		jQuery(this).find(".ngg-gallery-caption").fadeTo(150, .8);
		}, 
  		function () {
    		jQuery(this).find(".ngg-gallery-caption").fadeTo(100, 0);
  		}
	);
});

