// JavaScript Document
jQuery(document).ready(function(){
		//show no menus
		jQuery("dd.show").hide();
		//show first menu
		/*jQuery("dd:not(:first)").hide();
		
		//set this so that the menus slide around
		jQuery("dt a").click(function(){
			jQuery("dd:visible").slideUp("slow");
			jQuery(this).parent().next().slideDown("slow");

			return false;
		});*/
		
		//uncomment this so the menus all open or close
		//due to the hacks i have made i need to use this function when a category with no subs is clicked
		//with the class 'hide' this will hide the other open categories
		jQuery('dt.hide a').click(function(){
			jQuery(this).parent().next().siblings('dd.show:visible').slideUp('slow');
			return false;
			});
		//standard function for open and closing any category with the class 'show'
		jQuery('dt.show a').click(function(){
			jQuery(this).parent().next().siblings('dd.show:visible').slideUp('slow');
			jQuery(this).parent().next().slideToggle('slow');
			return false;
			});
		
//		jQuery("dd:visible").slideUp("slow");
	});