$(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready

 // (a little sooner than page load)

  $('.slidebox*').hide();

 // toggles the slickbox on clicking the noted link

 $("div.question").each(function () {
  var $faqwrap= $(this);
  $faqwrap.find("h4 > a").click(function () {
    var $currentSlidebox = $faqwrap.children(".slidebox");
    $currentSlidebox.slideToggle('normal');
    $('div.slidebox').not($currentSlidebox).slideUp('normal');
    return false;
  });
});
 
});
