/*	function nascondiNetwork(){
		$("#network .select").hide();
	}
	
	function mostraNetwork(){
		$("#network .select").show();
	}*/
	
	$(document).ready(
		function(){
			visible1=false;
			visible=false;
			/*setTimeout("nascondiNetwork()", 3000);*/
			
			$(window).resize(
				function(){
					nascondiNetwork();
				}
			);
			
			/*$("#network").hover(
				function () {
					mostraNetwork();
				}, 
				function () {
					setTimeout("nascondiNetwork()", 3000);
				}
			);*/
				$(".continua1").click(function () {
				if(visible1==false){
				
					$("#hiddenspettacolo1").show();
					$("#2").hide();
					$("#messaggio").hide();
					//$("#continua").html('<a href="#"><img class="arrow" src="img/icon_arrow_white_up.gif" /></a> ');
					visible1=true;
					
				 }else{
				
					$("#hiddenspettacolo1").hide();
					$("#2").show();
					$("#messaggio").show();
					//$("#continua").html('<a href="#"><img class="arrow" src="img/icon_arrow_white_down.gif" /></a>');
					visible1=false;
					
					}
					return false;
					}
										   
			);
			
			
			
			$(".continua2").click(function () {
				if(visible==false){
				
					$("#hiddenspettacolo2").show();
					$("#messaggio").hide();
					//$("#continua").html('<a href="#"><img class="arrow" src="img/icon_arrow_white_up.gif" /></a> ');
					visible=true;
					
				 }else{
				
					$("#hiddenspettacolo2").hide();
					//$("#continua").html('<a href="#"><img class="arrow" src="img/icon_arrow_white_down.gif" /></a>');
					visible=false;
					$("#messaggio").show();
					
					}
					return false;
					}
										   
			);
			$("#privacyLabel").hover(
				function () {
					$("#privacy").show();
				}, 
				function () {
					$("#privacy").hide();
				}
			);
			
		}
	);
	