/* Pee or Poo - Break the Taboo
Script edited by AQS ===> Amazing Scripter of 06,07,08 */

var facts = new Array(23); //Fact here
//var url = new Array(); //Url here

facts[0] = "42% of humans do not have an adequate toilet";
facts[1] = "In the year 1858, when Chief Engineer Sir Joseph Bazalgette was building the new sewer network for London, he had accounted for and included an extra 25% capacity for future population growth, and was big enough for storms. 150 years later, 15 million people are now using this system built for 3 million.";
facts[2] = "WTO is spearheading the WTC to train people on architecture, cleaning and ecological sanitation. After the tsunami in Sri Lanka training staff helped aid agencies build safe and dry toilets. Previously most families used crude holes-in-the-ground or pit latrines, contaminating ground water, and causing widespread diarrhea.";
facts[3] = "Source separation is a kind of toilet system whereby urine and feces are separated. This system saves up to 30% of water, and no smell is produced since urine and feces don't mix.";
facts[4] = "India's Minister of Rural Development, Raghuvansh Prasad Singh proposes to allow political candidates to run for election only if they have a toilet at home. A handful of India's government officers defecate along roadsides.";
facts[5] = "A South African study shows the introduction of dry toilets and hygiene education significantly improved health in a district outside Durban.";
facts[6] = "According to a poll of 11,000, the 'sanitary revolution' - the introduction of clean water and sewage disposal - has been the greatest medical advancement in the last 166 years.";
facts[7] = "443 million schooldays are lost annually worldwide due to diarrheal disease caused by inadequate sanitation.";
facts[8] = "Searches on Search Engine Watch's Top Choices for \"wold toilet day\" (with quote) averaged over 80,000 results as of 30 March 2008.";
facts[9] = "Squat toilets are more likely to be found in Asiatic countries, while seat toilets are more likely in European countries.";
facts[10] = "According to the Oxford English Dictionary, the word \"toilet\" originated from the French word toilette.";
facts[11] = "When looking for a toilet in some parts of China, one way is to make the OK sign and ask for the \"WC\".";
facts[12] = "There are various alternative ways in which toilets can be called, inclusive of \"washroom\", \"restroom\", \"bathroom\", \"men's/ladies\", \"conveniences\" and so on. Different areas may prefer certain terms.";
facts[13] = "According to the Millenium Development Goals, water and sanitation issues will be halved by 2015.";
facts[14] = "Lack of sanitation is a major threat to public health.";
facts[15] = "Poor sanitation is an affront to human dignity.";
facts[16] = "Sanitation affects everyone, particularly the poor and less-fortunate.";
facts[17] = "Public health interventions prevent epidemic and save lives.";
facts[18] = "Women and children may encounter personal dangers when they relieve themselves in the open.";
facts[19] = "Sanitation is a necessity and a means to enhance health.";
facts[20] = "2008 is the official International Year of Sanitation declared by the UN.";
facts[21] = "Achieve the objective of providing water, sanitation, and hygiene for all by 2025.";
facts[22] = "During Vicotorian times, most hotels do not feature the word 'toilets' or other such words on the door. Instead, they used room 100, which looks like the word 'loo'.";

function randomFeed()
{
	var index = Math.floor(Math.random() * facts.length);
	if (document.getElementById && document.getElementById("feed"))
	{
		var box = document.getElementById("feed");
		var fact = document.createTextNode("\" " + facts[index] + " \"");
		while(box.firstChild)
			box.removeChild(box.firstChild);
		box.appendChild(fact);
	}
}