
var quoteArray = [];

quoteArray[0] = "When we abolish the slavery of half of humanity, together with the whole system of hypocrisy that it implies, then the \"division\" of humanity will reveal its genuine significance and the human couple will find its true form.\n- Simone de Beauvoir";
quoteArray[1] = "Male and female represent the two sides of the great radical dualism. But in fact they are perpetually passing into one another. Fluid hardens to solid, solid rushes to fluid. There is no wholly masculine man, no purely feminine woman.\n- Margaret Fuller";
quoteArray[2] = "The source of all life and knowledge is in man and woman, and the source of all living is in the interchange and the meeting and mingling of these two: man-life and woman-life, man-knowledge and woman-knowledge, man-being and woman-being.\n- D. H. Lawrence";
quoteArray[3] = "Women have served all these centuries as looking-glasses possessing the magic and delicious power of reflecting the figure of man at twice its natural size.\n- Virginia Woolf";
quoteArray[4] = "The cocks may crow, but it's the hen that lays the eggs.\n- Margaret Thatcher";
quoteArray[5] = "The day will come when men will recognize woman as his peer, not only at the fireside, but in councils of the nation. Then, and not until then, will there be the perfect comradeship, the ideal union between the sexes that shall result in the highest development of the race.\n- Susan B. Anthony";
quoteArray[6] = "One is not born a woman, but rather becomes one. \n- Simone de Beauvoir";
quoteArray[7] = "Woman was taken out of man; not out of his head to top him, nor out of his feet to be trampled underfoot; but out of his side to be equal to him, under his arm to be protected, and near his heart to be loved. \n- Roy Croft";
quoteArray[8] = "Our struggle today is not to have a female Einstein get appointed as an assistant professor. It is for a woman schlemiel to get as quickly promoted as a male schlemiel. \n- Bella Abzug";
quoteArray[9] = "In the end antiblack, antifemale, and all forms of discrimination are equivalent to the same thing -- antihumanism. \n - Shirley Chisholm";
quoteArray[10] = "We would have every arbitrary barrier thrown down. We would have every path laid open to women as freely as to men. If you ask me what offices they may fill, I reply, any. I do not care what case you put; let them be sea captains, if you will. \n- Margaret Fuller";
quoteArray[11] = "I ask no favors for my sex, I surrender not our claim to equality. All I ask of our brethren is that they will take their feet off from our necks, and permit us to stand upright on the ground which God has designed us to occupy. \n- Sarah Grimk";
quoteArray[12] = "Because I am a woman, I must make unusual efforts to succeed. If I fail, no one will say, \"She doesn't have what it takes.\" They will say, \"Women don't have what it takes.\" \n- Clare Boothe Luce";
quoteArray[13] = "If we are to achieve a richer culture, rich in contrasting values, we must recognize the whole gamut of human potentialities, and so weave a less arbitrary social fabric, one in which each diverse human gift will find a fitting place. \n- Margaret Mead";
quoteArray[14] = "The freer that women become, the freer men will be. Because when you enslave someone, you are enslaved. \n- Louise Nevelson";

function randomQuote() {
	var index = Math.floor(Math.random() * quoteArray.length);
	if (document.getElementById) {
		var box = document.getElementById("quote");
		var quote = document.createTextNode(quoteArray[index]);
		while (box.firstChild)
			box.removeChild(box.firstChild);
		box.appendChild(quote);
	}
}

