/***********************************************************************************************************************
DOCUMENT: includes/javascript.js
COMPANY: Zipline Interactive
DEVELOPED BY: Ryan Stemkoski
EMAIL: ryan@gozipline.com
PHONE: 509-321-2849
DATE: 2/26/2009
DESCRIPTION: This is the JavaScript required to create the accordion style menu.  Requires jQuery library
************************************************************************************************************************/

$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDIAN STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('div.accordionButton').click(function() {
		
		$(this).next('div.accordionContent').slideToggle("slow")
	  .siblings('div.accordionContent:visible').slideUp("slow");
	});
	
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.accordionContent").hide();

});
$(this).next('div.accordionContent').slideToggle("slow")
	  .siblings('div.accordionContent:visible').slideUp("slow");
