window.addEvent('domready', function(){
    $$('img').each(function(img){
         img.set('opacity', 0.6).addEvents({
            'mouseover': function(){
                 this.fade(1);
             },
            'mouseout': function(){
                 this.fade(0.6);
             }
        });
    });
});// JavaScript Document