
function getMessage() {
	//Create Quote List
	var ar = new Array(30)
	ar[0] = "\"The law must be stable, but it must not stand still.\" &ndash;Roscoe Pound"
	ar[1] = "\"Laws are partly formed for the sake of good men, in order to instruct them how they may live on friendly terms with one another, and partly for the sake of those who refuse to be instructed, whose spirit cannot be subdued, or softened, or hindered from plunging into evil.\" &ndash;Plato"
	ar[2] = "\"The sword of justice has no scabbard.\" &ndash;Antione De Riveral"
	ar[3] = "Teachers open the door. You enter by yourself. &ndash;Chinese Proverb"
	ar[4] = "\"What is important is to keep learning, to enjoy challenge, and to tolerate ambiguity. In the end there are no certain answers.\"  &ndash;Martina Horner"
	ar[5] = "\"Work while you have the light. You are responsible for the talent that has been entrusted to you.\" Henri-Frederic Amiel"
	ar[6] = "\"Plans are only good intentions unless they immediately degenerate into hard work.\" &ndash;Peter Drucker"
	ar[7] = "\"I'm a great believer in luck, and I find the harder I work, the more I have of it.\" &ndash;Thomas Jefferson"
	ar[8] = "\"Whenever men take the law into their own hands, the loser is the law. And when the law loses, freedom languishes.\" &ndash;Robert F. Kennedy"
	ar[9] = "\"Law and order exist for the purpose of establishing justice and when they fail in this purpose they become the dangerously structured dams that block the flow of social progress.\" &ndash;Martin Luther King Jr."
	ar[10] = "\"The business of the law is to make sense of the confusion of what we call human life&ndash;to reduce it to order but at the same time to give it possibility, scope, even dignity.\" &ndash;Archibald Macleish"
	ar[11] = "\"There is something particularly appealing about teaching a subject that seems to deal with the lowest kind of relationships ... because you can show students that these raise the most fundamental questions about the structure of society.\" &ndash;Guido Calabresi"
	ar[12] = "\"Keep away from people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great.\" &ndash;Mark Twain"
	ar[13] = "\"A lawyer without history or literature is a mechanic, a mere working mason; if he possesses some knowledge of these, he may venture to call himself an architect.\" &ndash;Sir Walter Scott"
	ar[14] = "\"Never give up your right to be wrong, because then you will lose the ability to learn new things and move forward with your life.\" &ndash;David M. Burns"
	ar[15] = "\"Kites rise highest against the wind, not with it.\" &ndash;Winston Churchill"
	ar[16] = "\"Let me tell you the secret that has led me to my goal. My strength lies solely in my tenacity.\" &ndash;Louis Pasteur"
	ar[17] = "\"Justice is conscience&ndash;not a personal conscience, but the conscience of the whole of humanity. Those who clearly recognize the voice of their own conscience usually recognize also the voice of justice.\" &ndash;Alexander Solzhenitsyn"
	ar[18] = "\"Somewhere, in some law book, there must be a precedent to sustain me.\" &ndash;Clarence Darrow"
	ar[19] = "\"An unjust law is itself a species of violence.\" &ndash;Mahatma Gandhi"
	ar[20] = "\"This is a court of law, young man, not a court of justice.\" &ndash;Oliver Wendall Holmes Jr."
	ar[21] = "\"Justice is truth in action.\" &ndash;Benjamin Disraeli"
	ar[22] = "\"The great difficulty in education is to get experience out of ideas.\" &ndash;George Santayana"
	ar[23] = "\"True liberty can exist only when justice is equally administered to all.\" &ndash;Lord Mansfield"
	ar[24] = "\"Nothing is to be preferred before justice.\" &ndash;Socrates"
	ar[25] = "\"I have never let my schooling interfere with my education.\" &ndash;Mark Twain"
	ar[26] = "\"Success ... requires training and discipline and hard work. But if you’re not frightened by these things, the opportunities are just as great today as they ever were.\" -David Rockefeller"
	ar[27] = "\"The great aim of education is not knowledge but action.\" -Herbert Spencer"
	ar[28] = "\"Great cases, like hard cases, make bad law.\" -Oliver Wendell Holmes"
	ar[29] = "\"The life of the law has not been logic; it has been reason.\" -Oliver Wendell Holmes"
	
	var now = new Date()
	var sec = now.getSeconds()
	document.write (ar[sec % 26]);
}
getMessage()
//-->
