window.addEvent('domready', function() {

$$('.foto-galerie img').each(function(img) {
 img.addEvent('mouseenter', function() { img.fade(0.6); });
 img.addEvent('mouseleave', function() { img.fade(1); });
});

});
