// JavaScript Document

	jQuery(document).ready(function(){
		jQuery("dd:not(:first)").hide();
		jQuery("dt a").click(function(){
			jQuery("dd:visible").slideUp("slow");
			jQuery(this).parent().next().slideDown("slow");
			return true;
		});
	});
