window.addEvent('domready', function(){
	/*
	$$('.mini_img_select').each(function(img) {
		img.addEvent('click', function(e) {
			e.stop();
			//calcolo categoria 1/2/3
			var cat_img = img.getParent().getPrevious().getChildren().getProperty('id').toString();
			
			//azzera tutti i bottoni
			$(cat_img).getParent().getNext().getChildren().each(function(img1) {
				img1.removeClass('attivo');
			});
			//attiva un bottone
			img.toggleClass('attivo');
			//calcolo nome nuova img
			var new_img = 'images/promo/'+cat_img+'_'+img.getChildren().get('text')+'.jpg';
			
			var myImages = new Asset.images([new_img], {
			    onProgress: function(){
			        $(cat_img).setProperty('src', 'images/vuoto.gif');
			    },
				onComplete: function(){
					//assegna nuova img
					$(cat_img).setProperty('src', new_img);
				}
			});
		});
	});*/
	$$('.cont-thumb a').each(function(link) {
		link.addEvent('click', function(e) {
			e.stop();
			$('img-centrale').setProperty('src', 'images/chi-siamo/thumb-temp.gif');
			var oldImg = link.getChildren().get('src').toString().split('/');
			var newImg = 'images/chi-siamo/'+oldImg[3];
			$('img-centrale').setProperty('src', newImg);
		});
	});
});
