// Scrolling status bar text, this version by Paul Warwick 20th March 2004
// Spindrift Internet Services

// set up five messages

	message1 = "Reillys Paving ....";	
	message2 = "Stylish Drives to enhance your home ....";	
	message3 = "Professional and distinctive home improvements ....";	
	message4 = "Free site surveys ....";	
	message5 = "For an instant competitive quotation call Reillys Paving now on 01793 491197 ......";	

// set up the speeds and feeds

	scrollRate = 25;
	messageDelay   = 1500;

// Dick with this only if you know what your doing //

	breakChar = "^";
	textLine = message1+breakChar+message2+breakChar+message3+
	breakChar+message4+breakChar+message5+breakChar+breakChar;

	textNow = "";

	function scrollText(pos) 
	{
	if (textLine.charAt(pos) != '^') 
		{
		textNow = textNow + textLine.charAt(pos);
		status = textNow;
		hold = scrollRate;
		}
	else 
		{
		hold = messageDelay;
		textNow   = "";
	if (pos == textLine.length-1)
		{
		pos = -1;
		}
		}		
    	pos++;
    	setTimeout("scrollText('"+pos+"')",hold);
	}

	scrollText(0);
