$(document).ready(function(){
	
	$(".content-news h3:first").addClass("active");
	$(".content-news p:not(:first)").hide();

	$(".content-news h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});

$(document).ready(function(){
	
	$(".content-news2 h3:first").addClass("active");
	$(".content-news2 p:not(:first)").hide();

	$(".content-news2 h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});