window.addEvent('domready', function()
{
	thumbsLink 		= $$('.prodottiImg li');
	
	thumbsLink.each(function(thumb){
		thumb.addEvents({
			'mouseenter': function(){ this.addClass('hover'); },
			'mouseleave': function(){ this.removeClass('hover'); }
		});
	});
});