
<!-- Start of scroller script
var scrollCounter = 0;
var scrollText    = "Bookings are now being taken for 2010.           For summer holidays and vacations our three bedroom self catering apartment is ideally situated and fully equipped";
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();

// -->