

window.addEvent('domready', function() {
	
		$$('#gallery2 img').set('opacity', 1);
		$$('#gallery2 img').set('tween', {duration: 300});
		$$('#gallery2 img').addEvents({
			'mouseover': function() {
				this.tween('opacity', 0.65);
			},
			'mouseout': function() {
				this.tween('opacity', 1);
			}
		});
		
	});

window.addEvent('domready', function() {
	
		$$('#gallery1 img').set('opacity', 1);
		$$('#gallery1 img').set('tween', {duration: 300});
		$$('#gallery1 img').addEvents({
			'mouseover': function() {
				this.tween('opacity', 0.65);
			},
			'mouseout': function() {
				this.tween('opacity', 1);
			}
		});
		
	});

