// JavaScript Document

$(function(){
		//$("#accordion h3:first").addClass("active");
			$("#accordion div.reveal").hide();
		
			$("#accordion h3").click(function(){	
			
			  $(this).next("div.reveal").slideToggle("fast")
			  .siblings("div.reveal:visible").slideUp("fast");
			  $(this).toggleClass("active");
			  $(this).siblings("#accordion h3").removeClass("active");
													 });
});



