/***********************************************************************************************************************
DOCUMENT: javascripts/accordion-menu.js
DESCRIPTION: This is the JavaScript required to create the accordion style menu.  Requires jQuery library
************************************************************************************************************************/

$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDION STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('.accordionButton').click(function() {
	
		$(this).next().slideToggle(250); // expose the content next to the clicked item	
			
	});
			
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$('.accordionContent').hide();
			
});

