// JavaScript $(function(){/*	//form	$('.toggleForm').hide();	$(".toggleSegue").click(	function(){		if($('.toggleForm').is(":hidden")) {		  $('.toggleForm').slideDown("slow");				}else{		  $('.toggleForm').slideUp("slow");			}	})				$(".toggleClose").click(		function(){		$('.toggleForm').slideUp("slow");	})*/	//pagine	$('.toggleDiv').each(function(){		$(this).hide();		$(this).prev('.toggleSegue').click(			function(){				if($(this).next('.toggleDiv').is(":hidden")) {					$('.toggleDiv').each(function(){				   	$(this).slideUp('fast');				   });				  $(this).next('.toggleDiv').slideToggle('fast');					  				}else{				 $(this).next('.toggleDiv').slideToggle('fast');				}		})								$(this).children('.toggleClose').click(			function(){				$(this).parent('.toggleDiv').slideToggle('fast');			});		});			/*$('.toggleDiv3').each(function(){		$(this).hide();		$(this).prev('.toggleSegue3').click(			function(){				if($(this).next('.toggleDiv3').is(":hidden")) {					$('.toggleDiv3').each(function(){				   	$(this).slideUp('fast');				   });				  $(this).next('.toggleDiv3').slideToggle('fast');					  				}else{				 $(this).next('.toggleDiv3').slideToggle('fast');				}		})								$(this).children('.toggleClose3').click(			function(){				$(this).parent('.toggleDiv3').slideToggle('fast');			});		});*/$('.toggleDiv3').each(function(){		$(this).hide();		$(this).prev('.toggleSegue3').click(			function(){				if($(this).next('.toggleDiv3').is(":hidden")) {					$(this).next('.toggleDiv3').slideToggle('fast');					$(this).next('.toggleDiv3').fadeTo(100,1);						//$(this).hide();											}else{					$(this).next('.toggleDiv3').fadeTo(100,0);						$(this).next('.toggleDiv3').slideToggle('fast').fadeTo(600,0);					$(this).show();									}		})								$(this).children('.toggleClose3').click(			function(){				$(this).parent('.toggleDiv3').slideToggle('fast');			 	$(this).parent().prev().show();					});		});})
