
var factArray = [];

factArray[0] = "46% of the employed population in Russia are women.";
factArray[1] = "Negotiations are four times more often initiated by men than women.";
factArray[2] = "94% of the voice-overs in television advertisements are male.";
factArray[3] = "If ancient Spartan men were away at war for too long a time, the women were allowed to take another husband.";
factArray[4] = "Rwanda has the most balanced men to women ratio in single or lower parliament for the past three years with 51% and 49% of men and women representations respectively.";
factArray[5] = "35% women and 30% men feel that they would be less likely to vote for Hillary Clinton because she is a woman.";
factArray[6] = "By far, 417 men and only 49 women went to space.";
factArray[7] = "In 1995, for every dollar which a man earns, a woman earns only 75 cents.";
factArray[8] = "Majority of criminals grew up in families with absent fathers. Therefore, as much as it is important and natural for mothers to be at home, it goes the same for men.";
factArray[9] = "Every year, of 15 million baby girls in India, almost 25 per cent do not live to celebrate their 15th birthday.";
factArray[10] = "In Mosuo, a small community in China, women practise what is known as 'serial monogamy' where they change partners as many times as they like.";
factArray[11] = "Strictly speaking, most modern anthropologists do not believe that in any point in history, a matriarchal society has ever existed.";
factArray[12] = "Adult women take in approximately 1,000 fewer calories for one day than men in India.";
factArray[13] = "South Africa has the world\'s highest level of reported rape - nearly half a million each year.";
factArray[14] = "Dry sex is when desiccants such as salt or herbs are used to dry the natural lubricants in the female vagina, and this supposedly increases the pleasure during intercourse for men. This results in the tearing of the female's vaginal wall and increases the chances of HIV infection.";
factArray[15] = "Women's testimonies in court are considered only half as valuable as men's in Pakistan";
factArray[16] = "79% of the suicides that occur in China are committed by women, the only country where women suicide rates are higher than men.";
factArray[17] = "Some women in Iraq have been killed for not wearing headscarves, just 40 were killed in Basra in a span of five months in 2008.";
factArray[18] = "Researchers in India and Canada said prenatal selection and selective abortion were causing the loss of 500,000 girls a year in India.";
factArray[19] = "Of the parliamentary cabinet positions in Japan, only 9% are females.";

function randomFact() {
	var index = Math.floor(Math.random() * factArray.length);
	if (document.getElementById) {
		var box = document.getElementById("fact");
		var fact = document.createTextNode(factArray[index]);
		while (box.firstChild)
			box.removeChild(box.firstChild);
		box.appendChild(fact);
	}
}

