window.addEvent('domready', function() {
	var arrImages = $$('div.gallery img');
	arrImages.setOpacity(0.75);
	arrImages.addEvents({
		'mouseover': function() {
			this.setOpacity(1);
		},
		'mouseout': function() {
			this.setOpacity(0.75);
		}
	});
});