/*
 * Scripts for general use across the site
 */

jQuery(document).ready(function() {
	jQuery('.collapsible-content h3').each(function() {
			jQuery(this).nextUntil('h3')
				.wrapAll('<div class="expand-content">');
		});
	
	jQuery('.collapsible-content .expand-content').hide();
	
	jQuery('.collapsible-content h3').click(function() {
		jQuery(this).toggleClass('open');
		jQuery(this).next()
			.slideToggle();
	});
});
