// JavaScript Document
$(document).ready(function(){
	$("li.page_item").click(function(){	
		if($("li.page_item ul").is(":hidden")){
			$(this).find("ul").show("slow");	
		}else{
			$(this).find("ul").hide("slow");	
		}
	},
	function(){
		$(this).find("ul").hide();
		$("li.current_page_parent > ul").show("slow");
		$("li.current_page_item > ul").show("slow");
	});	
});