function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(14);
ideas[0] = "<p><i>All the peculiarities which lend to each language its particular character can be expressed in numbers.</i> - N. S. Trubetzkoy</p>"
ideas[1] = "<p><i>Anyone who attempts to generate random numbers by deterministic means is, of course, living in a state of sin.</i> - Johann von Neumann</p>"
ideas[2] = "<p><i>The sciences do not try to explain, they hardly even try to interpret, they mainly make models. By a model is meant a mathematical construct which, with the addition of certain verbal interpretations, describes observed phenomena. The justification of such a mathematical construct is solely and precisely that it is expected to work.</i> - Johann von Neumann</p>"
ideas[3] = "<p><i>The probable is what usually happens.</i> - Aristotle</p>"
ideas[4] = "<p><i>A frequentist uses impeccable logic to answer the wrong question, while a Bayesian answers the right question by making assumptions that nobody can fully believe in.</i> - P. G. Hamer</p>"
ideas[5] = "<p><i>''I think you're begging the question,'' said Haydock, ''and I can see looming ahead one of those terrible exercises in probability where six men have white hats and six men have black hats and you have to work it out by mathematics how likely it is that the hats will get mixed up and in what proportion.  If you start thinking about things like that, you would go round the bend.  Let me assure you of that!''</i>  - Agatha Christie, <i>The Mirror Crack'd</i></p>"
ideas[6] = "<p><i>It is remarkable that a science which began with the consideration of games of chance should have become the most important object of human knowledge.</i> - Laplace</p>"
ideas[7] = "<p><i>It turns out one way to make numbers less boring is to show more of them.</i> - Edward Tufte</p>"
ideas[8] = "<p><i>Words are a heavy thing...they weigh you down. If birds talked, they couldn't fly.</i> - Christian Williams</p>"
ideas[9] = "<p><i>When you can measure what you are speaking about, and express it in numbers, you know something about it; but when you cannot measure it, when you cannot express it in numbers, your knowledge of it is of a meager and unsatisfactory kind; it may be the beginning of knowledge, but you have scarcely, in your thoughts, advanced it to the stage of science.</i> - Sir William Thompson, Lord Kelvin</p>"
ideas[10] = "<p><i>Inside every Non-Bayesian, there is a Bayesian struggling to get out.</i> - Dennis V. Lindley</p>"
ideas[11] = "<p><i>In science...novelty emerges only with difficulty, manifested by resistance, against a background provided by expectation.</i> - Thomas S. Kuhn</p>"
ideas[12] = "<p><i>A mathematical model is neither a hypothesis nor a theory. Unlike scientific hypotheses, a model is not verifiable directly by an experiment. For all models are both true and false.... The validation of a model is not that it is 'true' but that it generates good testable hypotheses relevant to important problems.</i> - Richard Levins</p>"
ideas[13] = "<p><i>Science is advanced by people with a single-minded obsession with one or two ideas which they defend in the face of common sense and of the organized skepticism of the profession.</i> - Jon Elster</p>"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff
