$(document).ready(function() {
 $('.rgaccord1-nest').find('.rgaccord1-content').hide().end().find('.rgaccord1-toggle').click(function() {
   $(this).next().toggle('slow');
   if ($(this).parents(".rgaccord1-nest").hasClass("act")) {
		   $(this).parents(".rgaccord1-nest").removeClass("act");
   } else {
	   $(this).parents(".rgaccord1-nest").addClass("act");
   }
 });
});

