$(function() {
$("#hoversfumato").css("opacity","0.5");
$("#hoversfumato").hover(function () {
	$(this).stop().animate({
	opacity: 1.0
	}, "slow");
	},
		
// quando il mouse non è sull'elemento
function () {
	$(this).stop().animate({
	opacity: 0.5
	}, "slow");
	});
});

//Effetto fade applicato al testo
$(function() {
$("#text p").css("opacity","0.5");
$("#text p").hover(function () {
										  
$(this).stop().animate({
opacity: 1.0
}, "slow");
},

// quando il mouse non è sull'elemento
function () {
			
// imposta l'opacità al 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});

//effetto fade applicato al div
$(function() {
$("#div").css("opacity","0.5");
$("#div").hover(function () {
										  
$(this).stop().animate({
opacity: 1.0
}, "slow");
},
		
// quando il mouse non è sull'elemento
function () {
			
// imposta l'opacità al 50%
$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});
