$().ready(function() {
  $('ul.foldout li p').hide();
  $('ul.foldout li').click(function(e) {
    var li = $(this);

    if (li.children("p:visible").length > 0 ) {
      li.children("p").slideUp("fast");

    } else {
      $('ul.foldout li p').slideUp("fast");
      li.children("p").slideDown("fast");

    }

    e.preventDefault();
  });

  $('ul.slideshow a').fancybox({
    overlayColor: '#000',
    overlayOpacity: 0.5,
    centerOnScroll: false,
    modal: false,
    padding: 15,
    centerOnScroll: true,
    // titlePosition: 'over'
    width: 800,
    height: 450
  });

});
