$(document).ready(function(){
	
	$(".projectHeading:first").addClass("active");
	$(".projectContent:not(:first)").hide();
	$(".projectContent:first").show();

	$(".projectHeading").click(function(){
		$(this).next(".projectContent").slideToggle(800)
		//remove next line of code to change from Accordion to Collapsible Panels
		//.siblings(".projectContent:visible").slideUp("slow");
		$(this).toggleClass("active");
		//$(this).siblings(".projectHeading").removeClass("active");
	});

});


