
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(8);
ideas[0] = "The stage is not merely the meeting place of all the arts, but is also the return of art to life.	<p>-- Oscar Wilde";
ideas[1] = "We need a type of theatre which not only releases the feelings, insights and impulses possible within the particular historical field of human relations in which the action takes place, but employs and encourages those thoughts and feelings which help transform the field itself.<p>--	Bertolt Brecht "
ideas[2] = "The pit of a theatre is the one place where the tears of virtuous and wicked men alike are mingled.	<p>-- Denis Diderot "
ideas[3] = "To treat a ”big” subject in the intensely summarized fashion demanded by an evening’s traffic of the stage when the evening, freely clipped at each end, is reduced to two hours and a half, is a feat of which the difficulty looms large.<p>-- Henry James"
ideas[4] = "The drama’s laws, the drama’s patrons give, for we that live to please, must please to live.	<p>-- Samuel Johnson"
ideas[5] = "A playwright is the litmus paper of the arts. He’s got to be, because if he isn’t working on the same wave length as the audience, no one would know what in hell he was talking about. He is a kind of psychic journalist, even when he’s great.	<p>-- Arthur Miller"
ideas[6] = "The theatre, for all its artifices, depicts life in a sense more truly than history, because the medium has a kindred movement to that of real life, though an artificial setting and form.	<p>-- George Santayana	"
ideas[7] = "We are what we repeatedly do. Excellence, then, is not an act, but a habit. <p>-- Aristotle"
ideas[9] = "10"
ideas[10] = "11"
ideas[11] = "12"
ideas[12] = "13"
ideas[13] = "14"
ideas[14] = "15"
ideas[15] = "16"
ideas[16] = "17"
ideas[17] = "18"
ideas[18] = "19"
ideas[19] = "20"
ideas[20] = "21"
ideas[21] = "22"

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