$(document).ready(function() {
  // $("#posters .poster").cycle({ fx: "fade" });
  $("#posters a").lightBox(function() { fixedNavigation: true });

	
  $("ul#page-tree li ul").hide();
  $("ul#page-tree li.current_page_parent").children("ul").show();

  $("ul#page-tree li:has(ul) > a").click(function() {
    if ($(this).parent("li").children("ul").is(":hidden")) {
      $("ul#page-tree li ul").slideUp("fast");
    }
    
    $(this).parent("li").children("ul").slideToggle("fast");

    return false;
  });
});

