<!--
var menuText = 1
function changeText(menuText){
	if (menuText == 1){
		document.getElementById("para1").innerText = "pay you in 21 days";
		document.getElementById("para2").innerText = "give you an up to the minute quote";
		document.getElementById("para3").innerText = "give you your local weather forecast";
		menuText = 2;
	}
	else if (menuText == 2){
		document.getElementById("para4").innerText = "plan your next season's crops";
		document.getElementById("para5").innerText = "help you market your crops";
		document.getElementById("para6").innerText = "search for existing contracts";
		menuText = 3;
	}
	else if (menuText == 3){
		document.getElementById("para1").innerText = "Buy your crops online";
		document.getElementById("para2").innerText = "track movements in the market";
		document.getElementById("para3").innerText = "Check the latest farming news and trends";
		menuText = 4;
	}
	else if (menuText == 4){
		document.getElementById("para4").innerText = "sell you your seed and fertiliser";
		document.getElementById("para5").innerText = "Compare gross margins";
		document.getElementById("para6").innerText = "Target future prices";
		menuText = 1;
	}
	window.setTimeout("changeText("+menuText+")",2000);
	//timeStamp = self.setInterval("changeText("+menuText+")",5000);
}
//-->
