window.addEvent('domready', function(){
	
	$$('.picholder img').addEvents({
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Expo.easeOut
			}).tween('opacity', '.3');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('opacity', '1');
		}
	});
	$$('.picholder82 img').addEvents({
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 300,
				transition: Fx.Transitions.Expo.easeOut
			}).tween('opacity', '.3');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('opacity', '1');
		}
	});
});
