// Javascript functions for kob.nl

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".faq div").hide();
  //toggle the componenet with class msg_body
  $(".faq h3").click(function()
  {
    $(this).next(".faq div").slideToggle(300);
  });
});
