// JavaScript Document

$(document).ready(function(){
	$('dt').wrapInner("<a href='javascript:void(0)'></a>");
	$('dd').hide();
	$('dt a').click(function(){
		var nextDD=$(this).parent('dt:first').next('dd').eq(0);
		if($(nextDD).filter(':hidden').length>0)$(nextDD).show('slow');
		else $(nextDD).hide('slow');
	 });
								  
	$(".showAll").click(function(){$('dd').show('slow');});
	$(".hideAll").click(function(){$('dd').hide('slow');});
});