$(document).ready(function() {
	var nav_fade_speed = 400;
	var nav_slide_speed = 400;
	
	var nav_hide_siblings = function(target) {
		$(target).parent().siblings('LI:visible').each(function(index, item){
			$(item).find('UL').children('LI').fadeOut(nav_fade_speed);
			$(item).find('UL').slideUp(nav_slide_speed);
		});
	}

	var nav_hide_target = function(target) {
		$(target).children('LI').fadeOut(nav_fade_speed);
		$(target).slideUp(nav_slide_speed);
	}

	var nav_show_target = function(target) {
		nav_hide_siblings(target);
		$(target).children('LI').fadeIn(nav_fade_speed);
		$(target).slideDown(nav_slide_speed);
	}

	
	$('#leftnav A').click(function(){
		if($(this).attr('href') == "#") {
			var target_ul = $(this).next('UL');
			if($(target_ul).is(':visible')) { nav_hide_target(target_ul) } else { nav_show_target(target_ul); }
			return false;
		}
	});


	$('#leftnav').find('UL LI').fadeOut(0);	//hide all child LIs of the leftnav
	$('#leftnav').find('UL').hide();		//hide all child LIs of the leftnav
	$('#leftnav').show();					//show just the top level LIs


	$('#nav UL.menu A').each(function() {
		if(this.href == window.location) {
			$(this).parent().addClass("current");
			//$(this).parents('UL.menu LI').addClass('expand').select(".acitem").show();
			$(this).parents('UL').show(); //addClass('expand').select(".acitem").show();
			$(this).parents('UL').children('LI').show();
		}
	});

	$('#leftnav').fadeIn('slow');			//show the leftnav
});
