﻿// JScript File

$(document).ready(function(){


    $(".btn-slide").click(function(){
	  $("#programs").hide("slow");
	  $("#events").hide("slow");
	  $("#volunteers").hide("slow");
	  $("#aboutus").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-slide2").click(function(){
	  $("#aboutus").hide("slow");
	  $("#events").hide("slow");
	  $("#volunteers").hide("slow");
	  $("#programs").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-slide3").click(function(){
	  $("#aboutus").hide("slow");
	  $("#programs").hide("slow");
	  $("#volunteers").hide("slow");
	  $("#events").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-slide4").click(function(){
	  $("#aboutus").hide("slow");
	  $("#programs").hide("slow");
	  $("#events").hide("slow");
	  $("#volunteers").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	 $(".btn-footer").click(function(){
	  $("#programsFooter").hide("slow");
	  $("#eventsFooter").hide("slow");
	  $("#volunteersFooter").hide("slow");
	  $("#aboutusFooter").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-footer2").click(function(){
	  $("#aboutusFooter").hide("slow");
	  $("#eventsFooter").hide("slow");
	  $("#volunteersFooter").hide("slow");
	  $("#programsFooter").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-footer3").click(function(){
	  $("#aboutusFooter").hide("slow");
	  $("#programsFooter").hide("slow");
	  $("#volunteersFooter").hide("slow");
	  $("#eventsFooter").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
	$(".btn-footer4").click(function(){
	  $("#aboutusFooter").hide("slow");
	  $("#programsFooter").hide("slow");
	  $("#eventsFooter").hide("slow");
	  $("#volunteersFooter").slideToggle("slow");
	  $(this).toggleClass("active");
	});
	
});
