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

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

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

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

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