/* This is the global JS file for CMS-driven sites developed by RFX Technologies */



/* jQuery Init */
$(document).ready(function() {
	
	// Activate Expanding/collapsing DLs
	$('.cmsDefinitionList dt').css("cursor","pointer");
	$('.cmsDefinitionList dd').toggle();
	
	$('.cmsDefinitionList dt').click(function(){
		$(this).next().toggle();
	});

});
