function loadpage(page)
{

	$('loadingbox').fade(0.7);
	var Img = new Asset.image('/img/sito/' + page + '.jpg', {title: '', alt: 'Image', id: 'img', width: '550', height: '490',
								  onload: function() {
									$('textblock').innerHTML = "";
									Img.replaces($('img'));								  
									$('loadingbox').fade(0);
									
									$('text2').fade(1);
									}
																													   
								});

}

window.addEvent('domready', function(){
				
				$('loadingbox').set('opacity', 0);
				$('text2').set('opacity', 0);

				$('text2').setStyle('display', 'block');
				$('loadingbox').setStyle('display', 'block');
				$('loadingbox').fade(0.7);

				var Img = new Asset.image('/img/sito/fotohome.jpg', {title: '', alt: 'Image', id: 'img', width: '550', height: '490',
								  onload: function() {
										Img.replaces($('img'));								  
										$('loadingbox').fade(0);										
									}
																													   
								});
			});


