// JavaScript Document
$(document).ready(function() {
  $(".Expandable-Def-List > dd").hide(); //hide all the reference stories
  $(".Expandable-Def-List > dt").click(function() {//when user clicks reference story heading then display story
    $(this).next().slideToggle("fast");
	$(this).toggleClass("Expandable-Def-List-Item-Collapsed");
	});  
});