$(document).ready(function(){
	$('.livello1').mouseover(function(){
		$(this).find('.sottomenu').show();
		$(this).find('.parent a').addClass('over');
	});
	$('.livello1').mouseout(function(){
		$(this).find('.sottomenu').hide();
		$(this).find('.parent a').removeClass('over');
	});
});

