 /* ================================================================     
	  This copyright notice must be untouched at all times.    
	  Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.    =================================================================== */
	  $(function() {      
		if ($("#nav")) {        
		$("#nav dd").hide();        
		$("#nav dt b").click(function() {          
			if (this.className.indexOf("clicked") != -1) {           
			$(this).parent().next().slideUp(200);            
			$(this).removeClass("clicked");          
			}          
			else {            
			$("#nav dt b").removeClass();            
			$(this).addClass("clicked");            
			$("#nav dd:visible").slideUp(200);            
			$(this).parent().next().slideDown(500);          
			}          
			return false;        
			});      
			}    
			 });  
