$(document).ready(function(){

	$("#respond h3").eq(0).addClass("active");
	$("#respond span").eq(0).show();

	$("#respond h3").click(function(){

	  $(this).next("span").slideToggle("slow")
	  .siblings("span:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h3").removeClass("active");

	});

});

$(document).ready(function(){

	$("#spreadthewords h2").eq(0).addClass("active");
	$("#spreadthewords span").eq(0).show();

	$("#spreadthewords h2").click(function(){

	  $(this).next("span").slideToggle("slow")
	  .siblings("span:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h2").removeClass("active");

	});

});

$(document).ready(function(){

	$("#application h3").eq(0).addClass("active");
	$("#application div").eq(0).show();

	$("#application h3").click(function(){

	  $(this).next("div").slideToggle("slow")
	  .siblings("div:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h3").removeClass("active");

	});

});