$(document).ready(function(){
	
	$("div#accordion div.module:first").addClass("active");
	$("div#accordion div.modulebody:not(:first)").hide();

	$("div#accordion div.module").click(function(){
		$(this).next("div.modulebody").slideToggle("slow")
		.siblings("div.modulebody:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("div.module").removeClass("active");
	});

});
