// JavaScript Document  .nav3-grid dt dt a.blue aquatics_box    .nav3-grid dt dt aquatics_box
$(document).ready(function(){
    $("#aquatics_box").hide();		//To start, hide the contents of all detailed boxes
    $("#youth_and_family_box").hide();
    $("#active_older_adults_box").hide();
    $("#hockey_box").hide();
    $("#wellness_box").hide();
    $("#y_zone_box").hide();
    $("#rentals_parties_box").hide();
    $("#camp_box").hide();
   
    $("a#aquatics").click(function(){
	$("#aquatics_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#youth_and_family").click(function(){
	$("#youth_and_family_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#active_older_adults").click(function(){
	$("#active_older_adults_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#hockey").click(function(){
	$("#hockey_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#wellness").click(function(){
	$("#wellness_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#y_zone").click(function(){
	$("#y_zone_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
   
    $("a#rentals_parties").click(function(){
	$("#rentals_parties_box").toggle(250);
	return false;   //Stop click from normal behavior
    });

    $("a#summer_camps").click(function(){
	$("#camp_box").toggle(250);
	return false;   //Stop click from normal behavior
    });
});
