  $(function(){
				$(".accordion h5").eq(2).addClass("active");
				
			
				$(".accordion h5").click(function(){
					$(this).next("p").slideToggle("slow")
					.siblings("p:visible").slideUp("slow");
					$(this).toggleClass("active");
					$(this).siblings("h5").removeClass("active");
				});
	
			});





