//Effetto fade applicato alle foto
$(function() {
	// Opacità delle immagini impostate al 50% su portfolio interno
	$(".work").css("opacity","0.8");
	
	// Al passaggio del mouse
	$(".work").hover(function () {

	$("#"+$(this).attr("id")+" span").animate({top: 88}, 400);	
										  
	// imposta l'opacità al 100%
	$(this).stop().animate({
	opacity: 1.0
	}, "slow");
	},
		
	// quando il mouse non è sull'elemento
	function () {
		$("#"+$(this).attr("id")+" span").stop().animate({
		top: 140
		}, 400);
		// imposta l'opacità al 50%
		$(this).stop().animate({
		opacity: 0.8
		}, "slow");
	});
	
});
