// dd-accordion script
$(document).ready(function()
{
	$("dd:not(:first)").hide();
	$("dt").click(function()
	{
	  $("dd").hide("normal");
	  $(this).next("dd:not(:visible)").slideDown("normal");
	});
	
    });