﻿$(document).ready(function(){
	$(".nav_btn").hover(
		function() {
			$(this).fadeTo("fast", 0.7);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	$(".box_progetto").hide().fadeIn(1000);
	$("#dettagli_progetto").hide().fadeIn(500);
	/* ANIMAZIONE MENU' */
	$("#menu a").hover(
		function() {
			$(this).fadeTo("fast", 0.5);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	$("#menu_portfolio a").hover(
		function() {
			$(this).fadeTo("fast", 0.5);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	$("P.links a").hover(
		function() {
			$(this).fadeTo("fast", 0.5);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	$("P.social a").hover(
		function() {
			$(this).fadeTo("fast", 0.7);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
});
