//DROP DROP DROP
$(document).ready(function(){
	
	//DEFAULT ALL CLOSED
	
	$(".contentBody:gt(0)").hide(1);
	$(".informationBody").hide();

	
	//ADJUST SPEED OF DROP DOWN
	$(".contentHeader, .information").click(function(){
		$(this).next(".contentBody, .informationBody").slideToggle(500)
		return false;
	});

	//CLOSE ALL
	$(".closeAll").click(function(){
		$(".contentBody, .contentBody2, .informationBody").slideUp(500)
		return false;
	});

	//OPEN ALL
	$(".openAll").click(function(){
		$(".contentBody, .contentBody2").slideDown(500)
		return false;
	});



});
