$(document).ready(function(){
	
	$(".mb_box h3").eq(0).addClass("active");
	$(".mb_box p").eq(0).show();

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

});




	
