
jQuery(function(){
	
	// fotograf					 
	jQuery('.fotografbox a img, .ngg-singlepic').css({'opacity':0.6});
	jQuery('.fotografbox').hover(function(){
	       jQuery(this).children('a').children('img')
	       .animate({'opacity':1},200);
		   },
		   function(){
		   jQuery(this).children('a').children('img')
		   .animate({'opacity':0.6},200);
		   });
	jQuery('.ngg-singlepic').hover(function(){
																					jQuery(this).animate({'opacity':1},200);
																					},
																 function(){
																	         jQuery(this).animate({'opacity':0.6},200);
																						});
	
});
