/*****************************************************************************************
 * For sliding FAQ
 *****************************************************************************************/

$(document).ready( function()
{
  $(".faq_question").click(function(){
    if ($(this).next().css("display") == "none")
    {
      $(this).next().show("slow");
      $(this).css("background-image", "url(/images/faq-expanded.gif)");
    }
    else
    {
      $(this).next().hide("slow");
      $(this).css("background-image", "url(/images/faq-collapsed.gif)");
    }
  });
});

