/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
Script edited and maintained by webconsuls.com */

var num_of_quotes = 3;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
question="Do I have to come to court?<br /> Can my attorney appear for me in Mecklenburg County?";
body="North Carolina does require those accused of crimes to appear in court in most cases. Exceptions for this include a wide variety of traffic tickets. Below is the link to the page that describes exactly what offenses an attorney can appear for you.";
}

if (quotes==1) {
question="Do I have to go to jail? Is there alternative to jail?";
body="There are alternatives to jail. A skilled attorney can present an argument to the court requesting that any jail sentence be served on weekends.  A judge can also suspend a jail sentence; when a person is sentenced to 15 days in jail, an attorney can request the judge suspend the sentence, meaning the person will not have to serve any jail time as long as the person does not violate the terms of probation or commit a new crime.";
}

if (quotes==2) {
question="What is work release? Will I get out of jail immediately?";
body="Work release is a program in Mecklenburg County where a person can serve the remainder of their jail sentence in a residential facility in Charlotte. They live at the center, receive counseling while being employed...";
}

document.write('<p style="text-align:left; padding-top:5px; margin:5px; font-weight:bold;">' + question + '</p>');
document.write('<p style="text-align:justify; margin:5px; font-weight:normal;">');
document.write(''+ body +'</p>');
document.write('');
