/* questo per tutti gli altri pezzetti bloccati che non sono però voci di menu (es le lingue in lavorazione) */
/* è più semplice */
var comingG;
$(function(){		
	$('.voce_soon').mouseover(function() { 
		comingG = $(this).siblings().filter(".coming");
		comingG.hide()
		comingG.width("97px")
		comingG.height("25px")
		if(!$.browser.msie)
			comingG.fadeIn('fast');
		else
			comingG.show();
	});
	$('.coming').mouseover(function() { 
		$(this).width("97px")
		$(this).height("25px")
		$(this).show();
	});
	$('.coming').mouseout(function() { 
		$(this).hide();
	});
	
	$('.voce_soon').mouseout(function() { 
		comingG = $(this).siblings().filter(".coming");
		comingG.width("0px")
		comingG.height("0px")
	});
});

