var quotes = [
	["Peace cannot be kept by force. It can only be achieved by understanding", "Einstein"],
	["Everything should be as simple as possible and no simpler.", "Einstein"],
	["Knowledge is never achieved unless you start by confessing that you know nothing.", "Socrates"],
	["Unanswered questions are much less dangerouse than unquestioned answers.", null],
	["Education is the kindling of a flame, not the filling of a vessel.", "Socrates"],
	["Imagination is more important than knowledge. For knowledge is limited, whereas imagination embraces the entire world, stimulating progress, giving birth to evolution.", "Einstein"],
	["I don't give a damn for a man that can only spell a word one way.", "Mark Twain"],
	["Never let your schoolin' interfere with your education.",  "Mark Twain"],
	["An idea is a curious thing, it will not work unless you do.", "Jaeger's Facts"],
	["No battle plan ever survives contact with the enemy.", "Helmuth von Moltke"],
	["Courage is resistance to fear, mastery of fear not absence of fear", "Mark Twain"],
	["I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration. I will face my fear. I will permit it to pass over me and through me. And when it has gone past I will turn the inner eye to see its path. Where the fear has gone there will be nothing. Only I will remain.", "Frank Herbert in <em>Dune</em>"],
	["The difficult we do immediately; the impossible takes a little longer", null],
	["The most profound technologies are those that disappear. They weave themselves into the fabric of everyday life until they are indistinguishable from it.", "Mark Weiser"],
	["The cure for boredom is curiosity. There is no cure for curiosity.",  "Dorthy Parker"],
	["Measure what is measurable, and make measurable what is not so.", "Galileo Galilei"],
	["The walls between art and engineering exist only in our minds.", "Theo Jansen"],
  ["Do not train children to learning by force and harshness, but direct them to it by what amuses their minds, so that you may be better able to discover with accuracy the peculiar bent of the genius of each.", "Plato"],

];

function getRandomQuote() {
	var q = quotes[Math.floor(Math.random() * quotes.length)]
	retval = '<p>&ldquo;' + q[0] + '&rdquo;</p>\n';
	if(q[1] != null) retval += '<p class="align-right">&mdash; ' + q[1] + '</p>\n';
	return retval;
}
