window.addEvent('domready', function() {
	
	$('esterno').setStyle('padding-top', '1px');
	var myEsterno = new Fx.Slide('esterno', {
		duration: 2000,
		transition: Fx.Transitions.Expo.easeOut
	});
	//myEsterno.hide();	
	if (Browser.Engine.trident) {
		var xx = $$('ul').setStyle('margin-left', '40px');
		//$('artPrinc').setStyle('padding-top', '14px');
		/*$$('ul').each(function(el) { 
			el.setStyle('margin-left', '40px');
		});*/
	}
	
	var images = $$('img');
	var pathes = [];
	images.each(function(image){
	   pathes.push(image.getProperty('src'));
	});
	var myImages = new Asset.images(pathes, {
		onComplete: function(){
			mostraTutto();
		}
	});

	function mostraTutto() {
		
		var ld = $('links').offsetHeight - 30;
		var cd = $('corpo').offsetHeight;
		if (cd > ld) {
			cd = cd - 3;
			$('linksDet').style.height=cd+"px";
		} else {
			ld = ld - 72;
			$('corpoDet').style.height = ld+"px";
		}
		
		$$('#linksDet a.voceLink').each(function(el) { 
			var fx = new Fx.Morph(el,{ duration:300, link:'cancel' });  
			el.addEvents({  
				'mouseenter': function() { fx.start({ 'padding-right': 10 }); },  
				'mouseleave': function() { fx.start({ 'padding-right': 0 }); }  
			});  
		});	

		var size = $('corpo').getSize();
		$('corpo').scrollTo(0, size.y);
		//myEsterno.show();
		
	}
	
}
);