// Create array
var r_text = new Array ();

// Set the number of text strings to zero to start
var j = 0;

// List of text elements
r_text[j++] = "&quot;Everything feels like it's been settled, and there will be no more issues.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;I got to speak to [Affected Party] about what happened.&quot;<br /> - Juvenile Offender";
r_text[j++] = "&quot;Everyone felt comfortable to speak what they felt.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;All parties came together & were able to talk about the chain of events.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;More truth came forth.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;I like how we were able to come up with a solution.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;I was very comfortable with the way this was handled.  The circle was very familiar to me.  I teach young children, and we do this often.&quot;<br /> - Family Member of an Offender";
r_text[j++] = "&quot;I get to talk to my friend again and glad it worked out :-)&quot;<br /> - Client Statement";
r_text[j++] = "&quot;An agreement was made.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;We were all able to speak on how it affected us all.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;Heard both sides of the stories.  Both parties made sacrifices, but were agreed to.  Was able to come to conclusions without being told or demanding.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;Open dialogue.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;...how it helps to relieve pressure to talk & discuss the issue.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;I hope this is a lesson for [Referred] to get him on the right track.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;I have to say I honestly feel better about what was done.  I am not so angry anymore.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;This was a good class thing to Help for the payment.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;Thank You for this program. And your leadership in the mediation.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;Thank you very much for taking time to listen and help with this situation.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;All I have to say is I'm satisfied with what happened during the meeting.&quot;<br /> - Client Statement";
r_text[j++] = "&quot;This was great. It seems that those that were involved learned a lesson (I hope). It was so beneficial to have the victims present in the mediation.&quot;<br /> - Family Member of an Offender";
r_text[j++] = "&quot;Very helpful to understand other points of view and how everyone felt at the time.&quot;<br /> - Victim of a Crime";
r_text[j++] = "&quot;It helped me solve and have something to say, instead of having a judge do it for me.&quot;<br /> - Juvenile Offender";
r_text[j++] = "&quot;Each person was able to give their side of the story.&quot;<br /> - Family Member of a Victim";
r_text[j++] = "&quot;It gives the kids a chance for kids to think about their mistakes before the situation gets worse.&quot;<br /> - Family Member of an Offender";
r_text[j++] = "&quot;Having to pay the money and face the victims was hard, but very worth the end result.&quot;<br /> - Family Member of an Offender";
r_text[j++] = "&quot;I hope this program will be continued and expanded.&quot;<br /> - Victim of a Crime";
r_text[j++] = "Would you use mediation again?  Yes. &quot;But hopefully not.  I don't want to get in trouble again.&quot;<br /> - Youth involved in embezzlement from a store.";

// Generate random value
var i = Math.round(j * Math.random());

// Write to document
document.write(r_text[i]);
