/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 10;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="&mdash; EUGENE IONESCO";
body="I personally would like to bring a tortoise onto the stage, turn it into a racehorse, then into a hat, a song, a dragoon and a fountain of water. One can dare anything in the theatre....";
}

if (quotes==1) {
title="&mdash; PAUL NEWMAN";
body="Every time I get a script it's a matter of trying to know what I could do with it. I see colors, imagery. It has to have a smell. It's like falling in love. You can't give a reason why.";
}

if (quotes==2) {
title="&mdash; EDWARD ALBEE";
body="There are lots of young vital playwrights who are experimenting, and these are the plays that people who are interested in the theatre should see. They should go off Broadway. They should go to the cafe theatres and see the experiments that are being made.";
}

if (quotes==3) {
title="&mdash; TOM STOPPARD";
body="I think theater ought to be theatrical... you know, shuffling the pack in different ways so that it's - there's always some kind of ambush involved in the experience. You're being ambushed by an unexpected word, or by an elephant falling out of the cupboard, whatever it is.";
}

if (quotes==4) {
title="&mdash; ANI DiFRANCO";
body="Art is why I get up in the morning but my definition ends there. You know I don't think its fair that I'm living for something I can't even define.";
}

if (quotes==5) {
title="&mdash; UNKNOWN";
body="I make (theater) for free. Getting there is expensive.";
}

if (quotes==6) {
title="&mdash; TRISTAN BERNARD";
body="In the theater the audience wants to be surprised but by things that they expect.";
}

if (quotes==7) {
title="&mdash; RALPH WALDO EMERSON";
body="Do not go where the path may lead, go instead where there is no path and leave a trail....";
}

if (quotes==8) {
title="&mdash; MARTHA GRAHAM";
body="Theater is a verb before it is a noun, an act before it is a place.";
}

if (quotes==9) {
title="&mdash; JERRY HALL";
body="Music, art, theater. I'm just a big fan of beauty.";
}

document.write('<div align=left>');
document.write('<p><span class="quote-text">'+ body +'</span></p>');
document.write('<p class="quote-author">' + title + '</p>');
document.write('</div>');

