// JavaScript Document
$(function()
{

$("#patty").click(function(event) {
event.preventDefault();
$("#pattyExpanded").slideToggle();
$("#rachelExpanded").slideUp();
$("#cindyExpanded").slideUp();
$("#jennyExpanded").slideUp();
$("#samExpanded").slideUp();
$("#stevenExpanded").slideUp();
});

$("#pattyExpanded a").click(function(event) {
event.preventDefault();
$("#pattyExpanded").slideUp();
});
});

$(function()
{

$("#rachel").click(function(event) {
event.preventDefault();
$("#rachelExpanded").slideToggle();
$("#pattyExpanded").slideUp();
$("#cindyExpanded").slideUp();
$("#jennyExpanded").slideUp();
$("#samExpanded").slideUp();
$("#stevenExpanded").slideUp();
});

$("#rachelExpanded a").click(function(event) {
event.preventDefault();
$("#rachelExpanded").slideUp();
});
});

$(function()
{

$("#cindy").click(function(event) {
event.preventDefault();
$("#cindyExpanded").slideToggle();
$("#pattyExpanded").slideUp();
$("#rachelExpanded").slideUp();
$("#jennyExpanded").slideUp();
$("#samExpanded").slideUp();
$("#stevenExpanded").slideUp();
});

$("#cindyExpanded a").click(function(event) {
event.preventDefault();
$("#cindyExpanded").slideUp();
});
});

$(function()
{

$("#jenny").click(function(event) {
event.preventDefault();
$("#jennyExpanded").slideToggle();
$("#pattyExpanded").slideUp();
$("#rachelExpanded").slideUp();
$("#cindyExpanded").slideUp();
$("#samExpanded").slideUp();
$("#stevenExpanded").slideUp();
});

$("#jennyExpanded a").click(function(event) {
event.preventDefault();
$("#jennyExpanded").slideUp();
});
});

$(function()
{

$("#sam").click(function(event) {
event.preventDefault();
$("#samExpanded").slideToggle();
$("#pattyExpanded").slideUp();
$("#rachelExpanded").slideUp();
$("#cindyExpanded").slideUp();
$("#jennyExpanded").slideUp();
$("#stevenExpanded").slideUp();
});

$("#samExpanded a").click(function(event) {
event.preventDefault();
$("#samExpanded").slideUp();
});
});

$(function()
{

$("#steven").click(function(event) {
event.preventDefault();
$("#stevenExpanded").slideToggle();
$("#pattyExpanded").slideUp();
$("#rachelExpanded").slideUp();
$("#cindyExpanded").slideUp();
$("#jennyExpanded").slideUp();
$("#samExpanded").slideUp();
});

$("#stevenExpanded a").click(function(event) {
event.preventDefault();
$("#stevenExpanded").slideUp();
});
});

$(function()
{

$("#bristal").click(function(event) {
event.preventDefault();
$("#bristalExpanded").slideToggle();
$("#lestersExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#woodburyExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#bristalExpanded a").click(function(event) {
event.preventDefault();
$("#bristalExpanded").slideUp();
});
});

$(function()
{

$("#lesters").click(function(event) {
event.preventDefault();
$("#lestersExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#woodburyExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#lestersExpanded a").click(function(event) {
event.preventDefault();
$("#lestersExpanded").slideUp();
});
});

$(function()
{

$("#scotts").click(function(event) {
event.preventDefault();
$("#scottsExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#lestersExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#woodburyExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#scottsExpanded a").click(function(event) {
event.preventDefault();
$("#scottsExpanded").slideUp();
});
});

$(function()
{

$("#cc").click(function(event) {
event.preventDefault();
$("#ccExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#lestersExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#woodburyExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#ccExpanded a").click(function(event) {
event.preventDefault();
$("#ccExpanded").slideUp();
});
});

$(function()
{

$("#eb").click(function(event) {
event.preventDefault();
$("#ebExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#lestersExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#woodburyExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#ebExpanded a").click(function(event) {
event.preventDefault();
$("#ebExpanded").slideUp();
});
});

$(function()
{

$("#woodbury").click(function(event) {
event.preventDefault();
$("#woodburyExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#lestersExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#notforprofitExpanded").slideUp();
});

$("#woodburyExpanded a").click(function(event) {
event.preventDefault();
$("#woodburyExpanded").slideUp();
});
});

$(function()
{

$("#notforprofit").click(function(event) {
event.preventDefault();
$("#notforprofitExpanded").slideToggle();
$("#bristalExpanded").slideUp();
$("#lestersExpanded").slideUp();
$("#scottsExpanded").slideUp();
$("#ccExpanded").slideUp();
$("#ebExpanded").slideUp();
$("#woodburyExpanded").slideUp();
});

$("#notforprofitExpanded a").click(function(event) {
event.preventDefault();
$("#notforprofitExpanded").slideUp();
});
});