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

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

});

