// Scrolling status bar text, this version by Paul Warwick 20th March 2004
// Spindrift Internet Services

// set up five messages

	message1 = "Forties to Noughties....";	
	message2 = "All Occasions....";	
	message3 = "All Ages....";	
	message4 = "All Venues....";	
	message5 = "Call us now on 01793 704010 or 01367 240404 .";	

// 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);
