<script language="JavaScript">
<!-- Start of scroller script
var scrollCounter = 0;
var scrollText    = "Grange Air for champagne hot air balloon flights from our home town of Alton in Hampshire and now from selected launch sites in Sussex, Surrey and Berkshire. Book on line, flights all year";
var scrollDelay   = 70;

var i = 0;
while (i ++ < 140)
scrollText=" " + scrollText;
function Scroller()
{
	window.status = scrollText.substring(scrollCounter++, scrollText.length);
	if (scrollCounter == scrollText.length)
	scrollCounter = 0;
	setTimeout("Scroller()", scrollDelay);
}
Scroller();

// -->
</script>