function showDocList(id){
	$(".doclistclass:visible").hide();
	var it = "#doclist" + id;
	$(it).fadeIn("fast");
}

function voidIt() {
	
}




$(document).ready(function(){
	
	//left navigation
	
	$(".level2").hide();
		$(".level3").hide();
	
		$(".level1 > li > a").click(function(){
$(".level2:visible").slideUp("slow");
$(this).parent().children(".level2:hidden").slideDown("slow");
$(".level3:visible").slideUp("slow");

});

		$(".level2 > li > a").click(function(){
$(".level3:visible").slideUp("slow");
$(this).parent().children(".level3:hidden").slideDown("slow");

});



			$("#nav-one li").hover(
				function(){ $("ul", this).slideDown("fast"); }, 
				function() { } 
			);

	  




});
	
	

