/***********************************************************************************************************************
DOCUMENT: Scripts/contentslider.js
DEVELOPED BY: Ryan Stemkoski
COMPANY: Zipline Interactive
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

WORD OF LIFE USAGE: Adapted by yarosh for the camps and conferences home page.

************************************************************************************************************************/

$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDIAN STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');
		$(this).next().slideDown('normal');
	});
	
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.accordionContent").hide();

});

/***********************************************************************************************************************

NEW FUNCTION ADDED BY YAROSH
Purpose: Make entire block clickable
DEVELOPED BY: John Yarosh
DATE: 11/04/2009
DESCRIPTION: This will allow the entire section for a specific camp to be clickable

************************************************************************************************************************/
