

	var msg = " Elephant Removal Tel: 0845 009 1800 "; var spacer = "  ";
	var pos = 0; function ScrollMessage()
	{
		window.status = spacer + msg.substring(pos, msg.length*msg.length) +spacer + msg.substring(0,pos) + spacer ;
		pos++;
		if (pos > msg.length) pos = 0;
		window.setTimeout("ScrollMessage()",200);
	}
		ScrollMessage();


