/////////////////////////////////
// Gorleston Theatre Company
// Core JS Script
// Lead Author: Alex Youngs
/////////////////////////////////

// FUNCTIONS
/////////////////////////////////

// ON READY
/////////////////////////////////
$(function(){

	// ADD JS CLASS
	$("body").addClass("js");
	
	// ACCORDION
	$(".accordion h2").each(function() {
		$(this).click(function(event) {
			$(this).next().slideToggle();
			$(this).toggleClass("open");
			return false;
		});
	});
	
});
