// JavaScript Document with Effects

window.addEvent('domready', function() {
	var el = $('author1');
	el.setStyle('opacity',0.0);
	el.set('tween', {duration: 1500});

	$('artwork1').addEvent('mouseover', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.tween('opacity',0.8);
	});
	
	$('artwork1').addEvent('mouseleave', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.tween('opacity',0.0);
	});
});

window.addEvent('domready', function() {
	var el = $('author2');
	el.setStyle('opacity',0.0);
	el.set('tween', {duration: 1500});

	$('artwork2').addEvent('mouseover', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.tween('opacity',0.8);
	});
	
	$('artwork2').addEvent('mouseleave', function(e) {
		// You often will need to stop propagation of the event
		e.stop();
		el.tween('opacity',0.0);
	});
});
