msg = "----- Specialist Suppliers to the Legal Market and associated areas -----";
msg += "";
spacer = "";
pos=0;
function ScrollMessage() {
	var newtext1 = msg.substring(pos, msg.length) + spacer + msg.substring(0,pos);
	var td = document.getElementById("scroll");
	td.firstChild.nodeValue = newtext1.substring(0,65);
	pos++;
	if (pos > msg.length) pos=0;
	window.setTimeout("ScrollMessage()",200);
}


