window.addEvent('domready', function() {
					cc=$$('#immagine img').get('src');

$$('#colonna-2 a').addEvent('mouseover', function() {
  					nome = this.get('href');
  					desc = this.get('rel');
					$$('#immagine img').set('src',nome);
					});
$$('#colonna-2 a').addEvent('mouseout', function() {
					$$('#immagine img').set('src',cc);
					});
$$('#colonna-2 a').addEvent('click', function(e) {
						e.stop();
						});

});
