$(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 blockquote").eq(0).show();

	$("#spreadthewords h2").click(function(){

	  $(this).next("blockquote").slideToggle("slow")
	  .siblings("blockquote: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");

	});

});

$(document).ready(function(){

	$("#loginform ul.loginarea").eq(0).hide();

	$("#loginform li.loginbutton").click(function(){

	  $(this)("ul.loginarea").slideToggle("slow").slideRight("slow");
          $(this).show();
	  $(this).toggleClass("active");
	  $(this).("li.loginbutton").removeClass("active");

	});

});
