$(document).ready(function()
{
	$('.sub_nav').hide();
	
	$("ul#navlist a.category").toggle(function(){
	
			$(".sub_nav:visible").prev().trigger("click"); //hide the rest

			$(this).next().slideDown("slow");
			return false;
			
		}, function()
		{
			$(this).next().slideUp("slow");
			return false;
			
		});
		
		//$("dd:first").show();
	$(".nav_selected").parent().parent().parent().show();


	cid = "#" + category_open;
	$(cid).next().show();	
});