$(document).ready(function(){
	$("#contatti a").hover(function() {
	$(this).stop(false,true).animate({ color: "#FFFFFF" }, "slow");
	},function() {
	$(this).stop(false,true).animate({ color: "#C6CFB8" }, "slow");
	});
	$("#entra a").hover(function() {
	$(this).stop(false,true).animate({ color: "#DDD3C5" }, "slow");
	},function() {
	$(this).stop(false,true).animate({ color: "#C7B59E" }, "normal");
	});
	$(".dissolvi").hover(function() {
	$(this).stop(false,true).fadeTo("slow", 1.0);
	},function() {
	$(this).stop(false,true).fadeTo("slow", 0.4);
	});
});
$(window).load(function () {
	$("#contenitore").fadeIn("normal");
	$("#entra").wait(600).fadeIn("normal");
	$("#scritta,#contatti").wait(1200).fadeIn("normal");
	$(".dissolvi").wait(1450).fadeTo("slow", 0.4);
	$("#cssda").wait(1400).fadeTo("slow", 1.0);
});
