
 
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();}
	
 
 	if(page == 'discovery_camps') {
		$('div#newsletter-menu').show();	
	}
 	 else {
 	$('div#newsletter-menu').hide();
	 }
 

});
