$(document).ready(function(){

	//accordion two
	$(" .articles:first").addClass("active");
	$(" .toggle_container").not(":first").hide();

	$(" .articles").click(function(){
		$(this).next(" .toggle_container").slideToggle("slow")
		.siblings(" .toggle_container:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(" .articles").removeClass("active");
	});
	
	$(" .publications:first").addClass("active");
	
	$(" .toggle_container2").not(":first").hide();
	$(" .publications").click(function(){
		$(this).next(" .toggle_container2").slideToggle("slow")
		.siblings(" .toggle_container2:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(" .publications").removeClass("active");
	});
	
});

	

