	$(document).ready(
		function(){
			$("#produzione").hover(
			  function () {
					$(this).children("div").show();
					$(this).children("ul").show();
			  },
			  function () {
					$(this).children("div").hide();
					$(this).children("ul").hide();
			  }
			);
			
			$("#servizi").hover(
				function () {
					$(this).children("div").show();
					$(this).children("ul").show();
				},
				function () {
					$(this).children("div").hide();
					$(this).children("ul").hide();
				}
			);
			
			$("#inglese").hover(
				function () {
					$(this).children("div").show();
					$(this).children("ul").show();
				},
				function () {
					$(this).children("div").hide();
					$(this).children("ul").hide();
				}
			);
			
			$(".approfondisci").click(
				function () {
					$("#approfondimento").slideDown("slow");
					return false;
				}
			);
			
			$(".approfondisciClose").click(
				function () {
					$("#approfondimento").slideUp("slow");
					return false;
				}
			);
		}
	);
	