$(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");
	});

});

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

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

//});
