var quotes = new Array()
quotes[0]="Feminism is the radical notion that women are people.<br /> &nbsp;&nbsp;&nbsp;~ Cheris Kramarae and Paula Treichler"
quotes[1]="When I see the elaborate study and ingenuity displayed by women in the pursuit of trifles, I feel no doubt of their capacity for the most herculean undertakings. <br /> &nbsp;&nbsp;&nbsp;~ Julia Ward Howe"
quotes[2]="And by the way, everything in life is writable about if you have the outgoing guts to do it, and the imagination to improvise.  The worst enemy to creativity is self-doubt. <br /> &nbsp;&nbsp;&nbsp;~ Sylvia Plath"
quotes[3]="When an actress takes off her clothes onscreen but a nursing mother is told to leave, what message do we send about the roles of women? In some ways we're as committed to the old madonna-whore dichotomy as ever. And the madonna stays home, feeding the baby behind the blinds, a vestige of those days when for a lady to venture out was a flagrant act of public exposure. <br /> &nbsp;&nbsp;&nbsp;~ Anna Quindlen"
quotes[4]="You must find your own quiet center of life, and write from that to the world. <br />&nbsp;&nbsp;&nbsp;~ Sarah Orne Jewett"
quotes[5]="There are no new ideas.  There are only new ways of making them felt. <br />&nbsp;&nbsp;&nbsp;~ Audre Lorde"
quotes[6]="I write for myself and strangers. <br />&nbsp;&nbsp;&nbsp;~ Gertrude Stein"
quotes[7]="The liberation of language is rooted in the liberation of ourselves. <br />&nbsp;&nbsp;&nbsp;~ Mary Daly"
quotes[8]="It is the responsibility of the oppressed to teach the oppressors their mistakes.<br />&nbsp;&nbsp;&nbsp; ~ Audre Lorde"
quotes[9]="War is what happens when language fails.<br />&nbsp;&nbsp;&nbsp; ~ Margaret Atwood"
quotes[10]="Never retract, never explain, never apologize - get the thing done and let them howl! <br />&nbsp;&nbsp;&nbsp;~ Nellie McClung"
quotes[11]="Canadians can be radical, but they must be radical in their own peculiar way, and that way must be in harmony with our national traditions and ideals. <br />&nbsp;&nbsp;&nbsp; ~ Agnes MacPhail"
quotes[12]="What I have to say is far more important than how long my eyelashes are.  <br />&nbsp;&nbsp;&nbsp;~ Alanis Morissette"
quotes[13]="If you’re not annoying somebody, you’re not really alive.<br />&nbsp;&nbsp;&nbsp; ~ Margaret Atwood"
quotes[14]="Anyone who has gumption knows what it is, and anyone who hasn’t can never know what it is, so there is no need of defining it. <br />&nbsp;&nbsp;&nbsp;~ Lucy Maud Montgomery"
quotes[15]="A word after a word after a word is power. <br />&nbsp;&nbsp;&nbsp;~ Margaret Atwood"
quotes[16]="Writing is like playing some sort of game...you get so into it that the world disappears and you get to be powerful and in charge. <br />&nbsp;&nbsp;&nbsp;~ Sarah Elli"

// check for cookie
var quoteNumber;
if (getCookie("quoteNumber") == null) {
    // if NONE set cookie
    quoteNumber=(Math.floor(Math.random() * 17));
}
else {
    quoteNumber=parseInt(getCookie("quoteNumber")) +1;
    if (quoteNumber>16) {
        quoteNumber=0;
    }
}
setCookie("quoteNumber",quoteNumber);
document.writeln(quotes[quoteNumber] + "<br />");
