// JavaScript Document
window.addEvent('domready', function() {
	$$('#menu ul li').getElement('.freccia').set('morph', {duration: '300'});
	$$('#menu ul li').each(function(el) {
		el.getElement('.freccia').morph({'opacity': 0.4});
		el.addEvents({
			'mouseenter': function() { el.getElement('.freccia').morph({
				'opacity': 1,
				'marginLeft': 13}); },
			'mouseleave': function() { el.getElement('.freccia').morph({
				'opacity': 0.4,
				'marginLeft': 10}); }
		});
	});
	
	$$('.topopacity').set('morph', {duration: '300'});
	$$('.topopacity').each(function(el) {
		el.morph({'opacity': 0.6});
		el.addEvents({
			'mouseenter': function() { el.morph({
				'opacity': 1}); },
			'mouseleave': function() { el.morph({
				'opacity': 0.6}); }
		});
	});
});
