window.addEvent('domready', function() {

///// Click di entrata sulla Splash Page

if( $('enterLinkA') ){
	$('enterLinkA').addEvent('mouseenter', function(){
			this.morph({
					'padding-left' : 20,
					'color' :	'#ffffff'
				});
		}).addEvent('mouseleave', function(){
			this.morph({
					'padding-left' : 0,
					'color' :	'#a9c79b'
				});
			})
}

// Menu della Navbar

/*if( $$('.button') ){
	$$('.button').setStyle('height', 0);
	$$('.button').each(function(el){
		el.addEvent('mouseenter', function(){
			this.set('morph', {duration: 200});
			this.morph({
				'border-bottom-width' : 7,
				'height' : 25
			});
		}).addEvent('mouseleave', function(){
			this.set('morph', {duration: 200});
			this.morph({
				'border-bottom-width' : 0,
				'height' : 0
			});
		})
	});

}*/

// Menu delle Sezioni

var sectionboxList = $$('.sectionboxList');
sectionboxList.setStyle('opacity', 0.4);


sectionboxList.each(function(li){
		li.addEvent('mouseenter', function(){
			this.set('morph', {duration: 300});
			this.morph({
				'opacity' : 1.0
			});
		}).addEvent('mouseleave', function(){
			this.set('morph', {duration: 500});
			this.morph({
				'opacity' : 0.4
			});	
		});
	})



// Chiusura del DOMREADY
});
