/***********************************************************************************************************************
DOCUMENT: includes/javascript.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
************************************************************************************************************************/
 
url =  location.href;
fPos = url.lastIndexOf('/');
lPos = url.lastIndexOf('.');
page = url.substring(fPos+1,lPos);
 
  
$(document).ready(function() {
	//ACCORDION BUTTON ACTION	
 
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('slow');	
		$(this).next().slideDown('slow')

	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$("div.accordionContent").hide();

	if(page == 'staff' || page == 'board' || page == 'directions' || page == 'contact' || page == 'membership' || page == 'map_sanctuary' || page == 'map_lodge' || page == 'map_prairie') {$('div#aboutusMenu').show();}

	if(page == 'talahi' || page == 'mississippi' || page == 'olin' || page == 'hutchinson' || page == 'heartland') {$('div#protectedMenu').show();}
	
	if(page == 'firstsecond' || page == 'thirdfourth' || page == 'fifthsixth' || page == 'discovery_camp' || page == 'prek_kindergarten') {$('div#discoveryMenu').show();}
	
 
 

});
