﻿jQuery(document).ready(function(){


jQuery("dd:not(:first)").hide();
jQuery("dt a").click(function()
{
   
   //jQuery("dd:visible").slideToggle("slow");
   jQuery("dd:visible").slideUp("slow");
   
   jQuery(this).parent().next().slideDown("slow");
   
   return false;
    
});


});