		
function collapsePanel()
{
  //hide the all of the element with class panel_body
  $(".panel_body").hide();

  //toggle the componenet with class panel_body
  $(".panel_title").click(function()
  {
    //$(this).next(".panel_body").slideToggle(275);
    if($(this).next(".panel_body").css('display') == 'none'){
        //Make sure to give the panel padding when it is displayed
        $(this).next(".panel_body").css('padding', '10px');
    }
    $(this).next(".panel_body").toggle();
  });
};

//Is this function even used?  -_-
function displayPanel()
{
  //toggle the componenet with class panel_body
  $(".panel_title").click(function()
  {
    //$(this).next(".panel_body").slideToggle(275);
    if($(this).next(".panel_body").css('display') == 'none'){
        $(this).next(".panel_body").css('padding', '10px');
    }
    $(this).next(".panel_body").toggle();
  });
};
