/* 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 = 8;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Zora Neale Hurston";
body="Research is formalized curiosity. It is poking and prying with a purpose.";
}

if (quotes==1) {
title="Gloria Anzaldua";
body="Why am I compelled to write?... Because the world I create in the writing compensates for what the real world does not give me. By writing I put order in the world, give it a handle so I can grasp it.";
}

if (quotes==2) {
title="Maxine Hong Kingston";
body="I learned to make my mind large, as the universe is large, so that there is room for contradictions.";
}

if (quotes==3) {
title="Sherman Alexie";
body="Simply having Indians as the protagonists in a contemporary film, and placing them within this familiar literary and cinematic structure, is groundbreaking.";
}

if (quotes==4) {
title="Cornell West";
body="If we had a whole wave of new leaders in the next five to seven years, black America would be a different place.";
}

if (quotes==5) {
title="Leslie Feinberg";
body="I reserve my right to be complex.";
}

if (quotes==6) {
title="Jeanette Winterson";
body="Whatever it is that pulls the pin, that hurls you past the boundaries of your own life into a brief and total beauty, even for a moment, it is enough.";
}

if (quotes==7) {
title="Margaret Mead";
body="Never doubt that a small group of thoughtful, committed people can change the world; indeed it's the only thing that ever has.";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write('<font color="#660066" face="Arial" size="2"><b>'+ body +'</b></font>');
document.write('</div>');
