// Taken from CodeAve.com (Random JavaScript Text)
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "30,000 years ago hunter-gather societies formed in Africa &nbsp; -LP"
random_text[number++] = "Half of Africa&rsquo;s elephants died in the 1980s; by 1990 only 610,000 remained.  Prices and poaching dropped after the ivory ban took effect. Elephants are now recovering strongly &nbsp; -Natl Geographic"
random_text[number++] = "&quot;We dreamed in South Africa of a world beyond apartheid, and the world dreamed with us&quot; &nbsp; -Desmond Tutu"
random_text[number++] = "Hyraxes are the elephants&rsquo; second closest living relative; sea cows are the first &nbsp; -Gr&ouml;ning"
random_text[number++] = "&quot;Africa is a continent of remarkable human, cultural, and natural diversity&mdash;and a deeply cherished home to millions of people&quot; &nbsp; -Kofi Annan"
random_text[number++] = "&quot;Africa unite. &rsquo;Cause your children want to come home&quot; &nbsp; -Bob Marley"
random_text[number++] = "&quot;I've climbed Kilimanjaro [much] more than one hundred times... it's more than enough&nbsp; -Hezron Mbise&quot;"
random_text[number++] = "&quot;All bushmen are natural actors.  I suppose it&rsquo;s because they don&rsquo;t have television, and they spend their evenings telling stores and acting them out.  And they don&rsquo;t have any hang-ups or inhibitions at all&quot; &nbsp; -Jamie Uys, Director of Gods Must Be Crazy"
random_text[number++] = "&quot;Education is the most powerful weapon which you can use to change the world&quot; &nbsp; -Nelson Mandela"
random_text[number++] = "&quot;There is this tendency in Africa to think that it does not matter if an African kills other Africans.  Had Amin been white, free Africa would have passed many resolutions condemning him.  Being black is becoming a certificate to kill fellow Africans&quot; &nbsp; -Julius Nyerere (Nyerere kicked Amin out of Africa)"
random_text[number++] = "<i>Adansonia digitata</i> is the species name for Baobabs of East Africa, AKA Tree of Life and Mbuyu in Swahili &nbsp; -Giovanni Tombazzi Maps"
random_text[number++] = "&quot;They&rsquo;re just a lot of donkeys in football jerseys!&quot; &nbsp; -S. African official on hunting Zebras~1930s"
random_text[number++] = "Visitors brought Rwanda almost US$10 million in 1989; none of its gorillas had been poached since 1983 &nbsp; -Natl Geographic"
random_text[number++] = "Kamba yangu ndefu, lakini haiwezi kufunga kuni. My rope is long, but it cannot tie a bundle of firewood &nbsp; -Swahili Sayings"
random_text[number++] = "&quot;A poor country cannot rule itself if it relies on foreign help&quot; &nbsp; -Julius Nyerere"
random_text[number++] = "&quot;We must run while others walk&quot; &nbsp; -Julius Nyerere"
random_text[number++] = "&quot;Work is the foundation of progress&quot; &nbsp; -Julius Nyerere"
random_text[number++] = "&quot;Every Exit is an entry to somewhere else&quot; &nbsp; -Tom Stoppard"
random_text[number++] = "&quot;The first condition of understanding a foreign country is to smell it&quot; &nbsp; -Rudyard Kipling"
random_text[number++] = "&quot;I dislike feeling at home when I am abroad&quot; &nbsp; -John Steinbeck"
random_text[number++] = "&quot;I haven't been everywhere, but it's on my list&quot; &nbsp; -Susan Sontag"
random_text[number++] = "&quot;In the rainy season, we used to wash ourselves in the waterfalls in the mountains&quot; &nbsp; -Mende Nazer"
random_text[number++] = "&quot;In the Nuba Mountains, if someone is very uncomfortable, we say that they look like 'a soaked chicken' because a chicken caught out in the rain hunches up and fluffs out all its feathers, looking very sorry for itself&quot; &nbsp; -Mende Nazer"
// Create a random number with limits based on the number of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);


