function selectedFacts() {
 var n = 0
 var max = FactsArr.length
 var d = new Date()
	n = selectRandom(max)
	n %= max 
	return FactsArr[n]
}

// Select a random integer that is between 0 (inclusive) and max (exclusive)
function selectRandom(max) {
 var r = Math.random()
 r *= max
 r = parseInt(r)
 if(isNaN(r)) r = 0
 else r %= max
 return r
}

var FactsArr = new Array( 
	"<Span class='clsMarquee'>ANTS can carry 10 to 20 times their body weight and work together in teams to manage heavier workloads.</SPAN>",
	"<Span class='clsMarquee'>ANTS rarely sleep and can work for up to 24 hours a day.</SPAN>",
	"<Span class='clsMarquee'>From the outside, an ANT colony may look small and chaotic but within the nest one will observe a highly organized society with incredible order and discipline.</SPAN>",
	"<Span class='clsMarquee'>ANTS are the strongest living creatures in relation to their size.</SPAN>",
	"<Span class='clsMarquee'>The behaviour of ANTS as a highly organized community is guided by deep-rooted instincts</SPAN>",
	"<Span class='clsMarquee'>ANTS are still a successful species after at least 60 million years.</SPAN>",
	"<Span class='clsMarquee'>ANTS are one of the oldest living creatures on earth.</SPAN>",
	"<Span class='clsMarquee'>ANTS are highly adaptive to their environment.</SPAN>",
	"<Span class='clsMarquee'>Every movement an ANT makes is related to the nest and the colony's work.</SPAN>",
	"<Span class='clsMarquee'>Did you know that the study of ANTS is called Myrmecology?</SPAN>",
	"<Span class='clsMarquee'>ANTS are so numerous in the South American jungles they have been called 'The Kings of Brazil'. Brazil has also been referred to as 'One Great ANTS Nest'.</SPAN>",
	"<Span class='clsMarquee'>ANTS are everywhere.</SPAN>",
	"<Span class='clsMarquee'>The Dalmitie ANT cooks its food by chewing it into patties and baking them in the sun.</SPAN>",
	"<Span class='clsMarquee'>ANTS modify themselves... Through a complex system of chemical communication and constant feedback, an ANT colony regulates the number of workers and soldiers, and controls the timing of production of males and fertile females.</SPAN>",
	"<Span class='clsMarquee'>Because of their versatility and ability to adapt to almost any environment, ANTS are arguably the most successful creatures on the planet.</SPAN>",
	"<Span class='clsMarquee'>The biggest ANTS nest was found on the Ishikari Coast of Hokkaido: 306 million ANTS and 1 million queens lived in 45,000 interconnected nests over an area of 2.7 square kilometres (1,7 square miles).</SPAN>"
 )
