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