
// main
(function($) {
$(document).ready(function() {

  $("div.faqbody h3").click(function(){
    $(this).next().slideToggle("slow");
  });

   // PrettyPhoto
   $("a[rel^='prettyPhoto']").prettyPhoto();
    

});
})(jQuery)

