// JavaScript Document
$(document).ready(function()
{
  //hide the all of the element with class msg-body
  $(".menu-body").hide();
  //toggle the componenet with class msg-body
  $(".menu-head").click(function()
  {
    $(this).next(".menu-body").slideToggle(600);
  });
});

//slides the element with class "menu-body" when paragraph with class "menu-head" is clicked
/*$("#firstpane p.menu-head").click(function()
{
    $(this).css({backgroundImage:"url(/images/arrow-blue-down.png)"}).next("div.menu-body").slideToggle(300).siblings("div.menu-body").slideUp("slow");
    $(this).siblings().css({backgroundImage:"url(/images/arrow-blue-side.png)"});
});*/
