
function randomFact() {

	var Fact=new Array() 

	Fact[0] = "Last year <strong>20,228 tonnes</strong> of rubbish was recycled or composted.";
	Fact[1] = "<strong>85%</strong> of people think we are working to make Fenland cleaner and greener.";
	Fact[2] = "Last year we recycled or composted <strong>47%</strong> of household waste.";
	Fact[3] = "Last year we presented community groups with more than <strong>&pound;266,000</strong> worth of funding.";
	Fact[4] = "Our Street Pride volunteers have donated over <strong>1,720 hours</strong> to help improve their community.";
	Fact[5] = "Our Fenland @ your service shops and reception have had more than <strong>629,000</strong> visitors.";
	Fact[6] = "Since opening our contact centre has handled over <strong>435,000</strong> telephone calls.";
	Fact[7] = "We pick up <strong>60,000</strong> bins every week.";
	
	var whichFact=Math.round(Math.random()*(Fact.length-1));

	document.getElementById('factDiv').innerHTML  = Fact[whichFact];

}
