﻿//Javascript for menu accordian features

$(document).ready(function()
{
//slides the element with class "menu_body" when mouse is over the paragraph
$("#secondpane p.menu_head").click(function()
{
$(this).next("div.menu_body").slideToggle(500).siblings("div.menu_body").slideUp("slow");
$(this).siblings();
});
});

$(document).ready(function()
{
//slides the element with class "menu_body" when mouse is over the paragraph
$("#monthly_highlights p.h_head").click(function()
{
$(this).next("div.h_body").slideToggle(500).siblings("div.h_body").slideUp("slow");
$(this).siblings();
});
});
