// JavaScript Document
<!--
function text() {
};

text = new text();
number = 0;

// list items to be displayed
	text[number++] = "<p class=FAQhead>Why do we need a new courthouse?</p><p class=FAQbody>The Superior Court is quite simply out of space. From 2000 to 2008 the number of criminal cases in Maricopa County jumped from 26,000 to more than 41,000 per year and is expected to grow to 56,000 per year by 2016. With court space beyond capacity now, more courtrooms must be built to avoid a catastrophic logjam in the justice system. The current downtown Phoenix court will soon be unable to support the safe transportation of in-custody defendants, and the juror pool...</p>"
	text[number++] = "<p class=FAQhead>How much will it cost?</p><div class=FAQbody><p>$340 million.</p><p>More than $261 million had been put aside by the County, with the remainder made up by suspending other County capital projects.</p></div>"
	text[number++] = "<p class=FAQhead>How many courtrooms will it have?</p><p class=FAQbody>Originally it will have 22 courtrooms when the building opens. Space on other floors is being saved to add ten courtrooms later as the need arises.</p>"
	text[number++] = "<p class=FAQhead>Why spend money on building floors that don't have courtrooms?</p><p class=FAQbody>Wouldn't it be better to save that money?All the space will ultimately be needed. It's far better and much less expensive to make accommodations for future growth today, rather than retrofitting the building later.</p>"
	text[number++] = "<p class=FAQhead>Why aren't the judges' chambers next to their courtrooms?</p><p class=FAQbody>Many new high-efficiency courthouses around the country are going to a &quot;collegial&quot; approach, locating judicial offices together on an office floor. This not only promotes communication between judges and staff members, but it also allows the court to assign judges to different courtrooms, depending on the type of case they are trying at a particular time. For example, a judge may try a capital or high-profile case in one of the large courtrooms...</p>"
	text[number++] = "<p class=FAQhead>Will there be a cafeteria inside the building?</p><p class=FAQbody>Yes. By their very nature, courthouses are high security areas. Everyone entering - whether witness, defendant, attorney or juror - must go through a screening process each time they enter the building. A cafeteria will save thousands of hours of wait time per year by reducing the number of people who must leave and re-enter the building each day.</p>"
	text[number++] = "<p class=FAQhead>Will the courthouse be designed with the needs of the victim in mind?</p><p class=FAQbody>Yes. Arizona law requires that courthouses be built to minimize contact between victims’ family and witnesses, and defendants’ family and witnesses. Victims’ viewing rooms in the back of each courtroom and a victims’ meeting space will be provided on the lobby level next to a law enforcement waiting room for peace officer witnesses. This will make the courthouse a safer and more dignified place not only for victims, but for everyone.</p>"
	text[number++] = "<p class=FAQhead>Are &quot;extravagant&quot; materials, such as marble, travertine and terrazzo being used in this building?</p><p class=FAQbody>All materials used inside and outside the Court Tower are common to the construction industry and have been carefully selected to range towards the higher end of durability and the moderate range of cost. Travertine is one of the most common and highly durable stones in the construction industry. It will be used only in the elevator lobbies and the main docket wall. Terrazzo is a floor material... </p></p>"
	text[number++] = "<p class=FAQhead>What would happen if we didn’t construct this building?</p><p class=FAQbody>The need for more space would still   exist. Without additional courtrooms, criminal cases would simply take longer and longer to process and resolve, imposing substantial costs upon the taxpayers and additional hardships on victims, police officers and other witnesses, defendants and everyone else involved. By some estimates, each additional day   added to the County’s average trial length costs taxpayers $1 million in additional costs per ...</p>"
	text[number++] = "<p class=FAQhead>Will this courthouse have better security than the existing ones?</p><p class=FAQbody>The new facility will employ &quot;best practices&quot; recommended by the National Center for State Courts and other experts  for sorting, securing and moving prisoners to and from the courtrooms by building an underground central holding facility and holding cells adjacent to each courtroom. These cells will hold over 1,000 in-custody inmates at a time and allow for the proper separation of males and females, adults and juveniles, gang members, etc... </p>"
	text[number++] = "<p class=FAQhead>Why take money from other capital projects for this? Shouldn’t the County have bonded for the cost of the building?</p><p class=FAQbody>Unlike many other governments, Maricopa County <em>does not </em>finance its operating or capital costs by borrowing. This &quot;no debt&quot; policy has kept county property taxes low and helped it avoid the full scale budget crisis that other governments now face. However, it also requires the Board of Supervisors to make tough financial decisions. This was one of them. Addressing the crisis in the ...</p>"
	text[number++] = "<p class=FAQhead>Given the current economy, is this the right time to spend money on a new building?</p><p class=FAQbody>It is actually a very good time to build. The economic slowdown has resulted in much lower than expected commodity prices. For instance, copper, rebar, cement and structural steel prices are significantly lower today than a year ago. It is also good timing for the participating local contractors and businesses who will be able to avert or reduce planned layoffs.</p>"

// you can keep adding items here...

// get the random faq
increment = Math.floor(Math.random() * number);

// and write it
document.write(text[increment]);

//-->
