/* 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 = 20;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="Good movies make you care, make you believe in possibilities again.";
author="Pauline Kael";
}

if (quotes==1) {
body="One writes to teach, to move, or to delight.";
author="Rodolphus Agricola";
}

if (quotes==2) {
body="Better to write for yourself and have no public than to write for the public and have no self.";
author="Cyril Connolly";
}

if (quotes==3) {
body="The writer is an explorer. Every step is an advance into new land.";
author="Ralph Waldo Emerson";
}

if (quotes==4) {
body="Tell the truth as you understand it. If you&rsquo;re a writer, you have a moral obligation to do this. And it is a revolutionary act &mdash; truth is always subversive.";
author="Anne Lamott";
}

if (quotes==5) {
body="All makers must leave room for the acts of the spirit. But they have to work hard and carefully, and wait patiently, to deserve them.";
author="Ursula K. Le Guin";
}

if (quotes==6) {
body="Writers should use common words to say uncommon things.";
author="Arthur Schopenhauer";
}

if (quotes==7) {
body="The whole duty of a writer is to please and satisfy himself, and the true writer always plays to an audience of one.";
author="E. B. White";
}

if (quotes==8) {
body="The secret of good writing is telling the truth.";
author="Gordon Lish";
}

if (quotes==9) {
body="Film as dream, film as music. No form of art goes beyond ordinary consciousness as film does, straight to our emotions, deep into the twilight room of the soul.";
author="Ingmar Bergman";
}

if (quotes==10) {
body="A film is &mdash; or should be &mdash; more like music than like fiction. It should be a progression of moods and feelings.";
author="Stanley Kubrick";
}

if (quotes==11) {
body="Filmmaking is a chance to live many lifetimes.";
author="Robert Altman";
}

if (quotes==12) {
body="Without wonder and insight, acting is just a trade. With it, it becomes creation.";
author="Bette Davis";
}

if (quotes==13) {
body="Acting deals with very delicate emotions. It is not putting up a mask. Each time an actor acts he does not hide; he exposes himself.";
author="Rodney Dangerfield";
}

if (quotes==14) {
body="Great acting is not easy; anyone who says it is is either shallow or a charlatan. And one of the hardest things about acting is admitting that it is hard.";
author="Robert Cohen";
}

if (quotes==15) {
body="When you are acting, don&rsquo;t settle for anything less than the biggest dream for your character&rsquo;s future.";
author="Michael Shurtleff";
}

if (quotes==16) {
body="The creation of something new is not accomplished by the intellect, but by the play instinct acting from inner necessity. The creative mind plays with the objects it loves.";
author="Carl Jung";
}

if (quotes==17) {
body="Talent is an amalgam of high sensitivity; easy vulnerability; high sensory equipment (seeing, hearing, touching, smelling, tasting intensely); a vivid imagination as well as a grip on reality; the desire to communicate one&rsquo;s own experience and sensations, to make one&rsquo;s self heard and seen.";
author="Uta Hagen";
}

if (quotes==18) {
body="To be an actor you have to be a child.";
author="Paul Newman";
}

if (quotes==19) {
body="Acting is a spiritual quest to touch human beings.";
author="Larry Moss";
}

document.write('<div>');
document.write('<p>&ldquo;'+ body +'&rdquo;</p>');
document.write('<p class="whiteauthor">&mdash; ' + author + '</p>');
document.write('</div>');
