				window.addEvent('domready', function(){				
					links = $$('.immagine_azienda');
					toggles = $$('.immagine_azienda_txt');
					togs = {};
					links.each(function(el, idx) {
						togs[idx] = new Fx.Styles(toggles[idx], {duration:100, wait:false});
						el.addEvent('mouseenter', function(){ togs[idx].start({ 'height': 40 }); });
						el.addEvent('mouseleave', function(){ togs[idx].start({ 'height': 12 }); });
					});										
			});
			/* ]]> */