var quoteArray = new Array();
quoteArray[0] = '"In order to know what the law is, we must know what it hs been, and what it tends to become."<br>~ Oliver Wendel Holmes ~';
quoteArray[1] = '"The life of the law has not been logic; it has been experience."<br>~ Oliver Wendel Holmes ~';
quoteArray[2] = '"The law does not expect a man to be prepared to defend every act of his life which may be suddenly and<br>without notice alleged against him"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;~ John Marshall';
quoteArray[3] = '"Mere access to the courthouse doors does not by itself assure a proper functioning of the adversary process."<br>~ Thurgood Marshall ~';
quoteArray[4] = '"No power on earth has a right to take our property from us without our consent."<br>~ John Jay ~';
quoteArray[5] = '"Judges and justices are servants of the law, not the other way around. Judges are like umpires.<br>Umpires do not make the rules; they apply them."&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;~ John Roberts';

function writeQuotes(){
	qSpot = document.getElementById("footerQuote");
	qSpot.innerHTML = quoteArray[q];
	q = (q==quoteArray.length-1)?0:q+1;
	quoteDelay();
}

function quoteDelay(){
	window.setTimeout("writeQuotes()", 9000);
}
