//DROP DROP DROP
$(document).ready(function(){
	
	//DEFAULT ALL CLOSED
	
	$(".contentBody:gt(-1)").hide(); //serve per decidere se fare aprire le sezioni o meno, basta scrivere i numeri delle sezioni, -1 non apre niente, mentre il numero zero dentro la parentesi apre la prima sezione 
	
	$(".informationBody:gt(-1)").hide();
	
	//ADJUST SPEED OF DROP DOWN
	$(".contentHeader, .information").click(function(){
		$(this).next(".contentBody, .informationBody").slideToggle(500)
		return false;
	});
	//CLOSE ALL
	$(".closeAll").click(function(){
		$(".contentBody, .informationBody").slideUp(500)
		return false;
	});
	//OPEN ALL
	$(".openAll").click(function(){
		$(".contentBody").slideDown(500)
		return false;
	});
});

